/* 基礎與共用樣式（以主站為主） */
* {
    scroll-margin-top: 100px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFF9EF;
    color: #4A3B2C;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    background: rgba(255, 249, 239, 0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid #F5E2C9;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    color: #B45F2B;
}

.logo-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.3px;
    color: #B45F2B;
    line-height: 1.2;
}

.logo-text span {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #8B6C4D;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #5E3E28;
    transition: 0.2s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #C17B42;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #B45F2B;
}

.btn-primary {
    background: #E2C7A5;
    color: #4F2F1A;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-soft {
    background: transparent;
    border: 1.5px solid #E2C7A5;
    padding: 8px 20px;
    border-radius: 40px;
    color: #B45F2B;
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}

.btn-line {
    background: #06C755;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-line:hover {
    background: #05a848;
    transform: translateY(-2px);
}

.hero-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 245, 225, 0.7);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 12px;
    border-radius: 32px;
    color: #B45F2B;
    z-index: 2;
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: #B45F2B;
    width: 24px;
    border-radius: 6px;
}

.dot:hover {
    background: #B45F2B;
}

section {
    margin: 26px 0;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: #B45F2B;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    background: #FEF7ED;
    border-radius: 48px;
    padding: 40px;
}

.about-text {
    flex: 1.5;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-highlight {
    background: #FFF3E2;
    border-radius: 28px;
    padding: 16px 24px;
    margin-top: 20px;
    display: inline-block;
}

.about-photo {
    flex: 0.8;
    text-align: center;
}

.about-photo img {
    width: 100%;
    max-width: 240px;
    border-radius: 32px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #F0E2D0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.photo-item a {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.photo-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.photo-item a:hover {
    transform: scale(1.02);
}

.more-btn-container {
    text-align: center;
    margin-top: 32px;
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.service-card {
    background: #FFFDF7;
    border-radius: 48px;
    padding: 28px 32px;
    border: 1px solid #F5E2C9;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #B45F2B;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-range {
    font-size: 2rem;
    font-weight: 700;
    color: #8B5A2B;
    margin: 12px 0 8px;
}

.price-range small {
    font-size: 1rem;
    font-weight: normal;
    color: #9B846B;
}

.service-note {
    color: #6C5642;
    margin: 16px 0;
    padding-left: 12px;
    border-left: 3px solid #E2C7A5;
}

.ask-example {
    background: #FEF7ED;
    border-radius: 28px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #9B6942;
}

.flex-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.double-column {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0 32px;
}

.col {
    flex: 1;
    min-width: 260px;
}

.contact-block {
    background: #FFFDF7;
    border-radius: 48px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #F5E2C9;
    display: flex;
    flex-direction: column;
}

.contact-block h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #B45F2B;
    margin-bottom: 18px;
}

.contact-sub {
    color: #8B6C4D;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.social-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon-item:hover {
    transform: translateY(-4px);
}

.social-circle-icon {
    width: 58px;
    height: 58px;
    background: #FFF6ED;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #B86F34;
    border: 1px solid #F0E0CD;
}

.social-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #9B846B;
}

.contact-rows {
    text-align: left;
    background: #FFFBF5;
    border-radius: 32px;
    padding: 8px 20px;
    margin: 0px 0;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-bottom: 1px solid #F0E2D0;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 40px;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:hover {
    background: #FFF3E6;
}

.contact-icon {
    width: 36px;
    font-size: 1.3rem;
    color: #B86F34;
    text-align: center;
}

.contact-info {
    flex: 1;
    font-weight: 500;
    color: #4A3B2C;
}

/* 電腦版電話字體放大 */
.contact-row .contact-info {
    font-size: 1.1rem;
}

.social-bottom-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 0px;
    padding-top: 20px;
}

.journey-section {
    margin: 60px 0;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.journey-card {
    background: #FEF7ED;
    border-radius: 28px;
    padding: 16px 12px;
    text-align: center;
    border: 1px solid #F5E2C9;
}

.journey-card:hover {
    transform: translateY(-4px);
    background: #FFFBF5;
}

.journey-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.journey-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5A4533;
    line-height: 1.4;
}

.journey-guide {
    text-align: center;
    margin-top: 24px;
    font-size: 1rem;
    color: #9B846B;
    background: #FFFBF5;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 60px;
}

footer {
    text-align: center;
    padding: 44px 20px;
    border-top: 1px solid #F0E2D0;
    margin-top: 20px;
    color: #9B846B;
}

/* Reels 滑動模塊樣式 */
.reels-slider-wrapper {
    background: #FFFDF7;
    border-radius: 48px;
    padding: 24px 0px;
    border: 1px solid #F2E3D2;
    height: 100%;
    margin-bottom: 5px;
}

.reels-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reels-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 0;
}

.reel-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reel-item iframe {
    width: 420px;
    height: 500px;
    max-width: 100%;
    border-radius: 24px;
    background: #000;
}

.reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(180, 95, 43, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reels-nav:hover {
    background: #B45F2B;
}

.prev-reel {
    left: 20px;
}

.next-reel {
    right: 20px;
}





























/* 手機版響應式 */
@media (max-width: 768px) {

    .reel-item iframe {
        width: 95%;
        height: auto;
        aspect-ratio: 350 / 550;
        max-width: 230px;
    }

    .reels-nav {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .prev-reel {
        left: 0px;
    }

    .next-reel {
        right: 0px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: #FFFBF4;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
        transition: right 0.3s;
        z-index: 1001;
        border-left: 1px solid #F0E2D0;
    }

    .nav-links.active {
        right: 0;
    }

    .flex-buttons {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .journey-card {
        padding: 6px 6px !important;
    }

    .journey-text {
        font-size: 0.9rem;
    }

    .btn-line,
    .btn-primary {
        flex: 1;
        text-align: center;
        padding: 8px 8px;
        font-size: 0.75rem;
        white-space: nowrap;
        justify-content: center;
    }

    .contact-block h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .about-highlight {
        margin-top: 0px;
    }

    .contact-sub {
        font-size: 0.9rem;
    }

    .social-label {
        font-size: 0.75rem;
    }

    /* 手機版電話字體放大 */
    .contact-row .contact-info {
        font-size: 1.1rem;
        
    }

    .contact-block {
        padding: 10px 10px;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(3px);
        z-index: 1000;
        display: none;
    }

    .overlay.active {
        display: block;
    }

    .about-grid {
        flex-direction: column;
        gap: 8px;
        text-align: left;
        padding: 10px 10px;
    }

    .about-photo {
        order: 2;
        margin-top: 0px;
    }

    .about-text {
        order: 1;
    }

    .slide:nth-child(1) {
        background-position: 70% 50%;
    }

    .slide:nth-child(2) {
        background-position: 30% 50%;
    }

    .slide:nth-child(3) {
        background-position: 30% 50%;
    }

    .slide:nth-child(4) {
        background-position: 30% 50%;
    }

    .slide:nth-child(5) {
        background-position: 70% 50%;
    }

    .slide:nth-child(6) {
        background-position: 20% 50%;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .social-icons-row {
        gap: 8px;
        margin-bottom: 6px;
    }

    .social-bottom-row {
        gap: 12px;
        margin-top: 6px;
        padding-top: 0;
    }

    .social-bottom-row div {
        font-size: 0.8rem !important;
    }

    .social-circle-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-range {
        font-size: 1.3rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 20px 18px;
    }

    .contact-row {
        padding: 10px 4px;
        gap: 8px;
    }

    .contact-icon {
        width: 28px;
        font-size: 1rem;
    }

    /* 兩站統一使用台南站的 .container 手機版設定 */
    .container {
        width: 95%;
        padding: 0 2%;
        margin: 0 auto;
    }

    .double-column {
        flex-direction: column;
        gap: 20px;
    }

    .slide {
        height: 250px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 22px;
    }

    .carousel-dots {
        bottom: 12px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 16px;
    }
}