/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #f8f6f0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif SC', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Contact Buttons */
.fixed-contact {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    justify-content: center;
}

.phone-btn {
    background: #ff4444;
    color: white;
}

.phone-btn:hover {
    background: #e63939;
    transform: translateX(-5px);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20b954;
    transform: translateX(-5px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 125, 107, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    text-align: left;
}

.brand-title {
    font-size: 1.4rem;
    color: #8b7355;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 1.1rem;
    color: #8b7355;
    margin: 0;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
   
     
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

/* .nav-link:hover {
    color: #8b7355;
} */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b7355;
    transition: width 0.3s ease;
}

/* .nav-link:hover::after {
    width: 100%;
} */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #2c2c2c;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.btn-outline {
    background: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.btn-outline:hover {
    background: #8b7355;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #d4c4a8, #c8b896);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(212, 196, 168, 0.7) 0%, 
        rgba(200, 184, 150, 0.5) 50%, 
        rgba(212, 196, 168, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #8b7355;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-chinese {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #6b5d4f;
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: #8b7355;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #8b7355;
    max-width: 600px;
    margin: 0 auto;
}

/* Brochure Section */
.brochure {
    padding: 6rem 0;
    background: white;
}

.brochure-content {
    display: flex;
    justify-content: center;
}

.brochure-card {
    background: #f8f6f0;
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.15);
}

.brochure-visual {
    position: relative;
}

.brochure-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.brochure-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.brochure-info {
    text-align: center;
}

.brochure-title {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.brochure-description {
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Price List Section */
.pricelist {
    padding: 6rem 0;
    background: #f8f6f0;
}

.pricelist-content {
    display: flex;
    justify-content: center;
}
a {
    color: #333; /* 設置您喜歡的顏色，例如深灰色 */
    text-decoration: none; /* 去除底線 */
}

/* 選擇性：設定滑鼠移上去時的樣式 */
 
.pricelist-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
     
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
}

.pricelist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.15);
}

.pricelist-visual {
    position: relative;
}

.pricelist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.pricelist-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pricelist-info {
    text-align: center;
}

.pricelist-title {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.pricelist-description {
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-map {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-advantages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    background: #f8f6f0;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.08);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.15);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.advantage-description {
    color: #5a5a5a;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.advantage-distance {
    color: #8b7355;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: #f8f6f0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-card {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05), rgba(166, 139, 91, 0.05));
    border: 2px solid rgba(139, 115, 85, 0.1);
    border-radius: 24px;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-whatsapp {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-chinese {
    font-size: 1.3rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #b0b0b0;
    margin-bottom: 0;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b7355;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .fixed-contact {
        right: 10px;
        gap: 8px;
    }
    
    .contact-btn {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 120px;
    }

    .nav-menu {
         
        gap: 0rem;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(248, 246, 240, 1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(139, 115, 85, 0.1);
    }
    .nav-link {
        align-content: center;
    
        text-align: center;
        width: 100%;
        height: 50px;
        text-decoration: none;
        color: #2c2c2c;
        font-weight: 400;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        position: relative;
    }
    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brochure-card,
    .pricelist-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }


 
    .hero-content {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .brochure,
    .pricelist,
    .location,
    .gallery,
    .contact {
        padding: 4rem 0;
    }

    .gallery-item {
        height: 250px;
    }

    .contact-card {
        padding: 3rem 1.5rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}




