/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    background-color: #FDFBF7;
    color: #064E3B;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Section Shared ========== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 12px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #059669;
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.5;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #064E3B;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #047857;
    opacity: 0.75;
    line-height: 1.7;
}

/* ========== Navigation ========== */
.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.nav-scrolled.scrolled {
    background-color: rgba(253, 251, 247, 0.97);
    box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FDFBF7;
    transition: color 0.35s ease;
}

.nav-scrolled.scrolled .nav-logo {
    color: #064E3B;
}

.nav-logo-icon {
    color: #A7F3D0;
    transition: color 0.35s ease;
}

.nav-scrolled.scrolled .nav-logo-icon {
    color: #059669;
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(253, 251, 247, 0.85);
    transition: color 0.25s ease;
    position: relative;
}

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

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

.nav-link:hover {
    color: #FDFBF7;
}

.nav-scrolled.scrolled .nav-link {
    color: #047857;
}

.nav-scrolled.scrolled .nav-link::after {
    background: #059669;
}

.nav-scrolled.scrolled .nav-link:hover {
    color: #064E3B;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #059669;
    color: #FDFBF7 !important;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: #047857;
    transform: translateY(-1px);
}

.nav-scrolled.scrolled .nav-cta {
    background: #059669;
    color: #FDFBF7 !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #FDFBF7;
    transition: color 0.35s ease;
}

.nav-scrolled.scrolled .nav-toggle {
    color: #064E3B;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #064E3B 0%, #047857 40%, #059669 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/2403392/pexels-photo-2403392.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 78, 59, 0.88) 0%,
        rgba(4, 120, 87, 0.82) 50%,
        rgba(6, 78, 59, 0.90) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(167, 243, 208, 0.15);
    border: 1px solid rgba(167, 243, 208, 0.3);
    border-radius: 50px;
    color: #A7F3D0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}

.hero-badge svg {
    color: #6EE7B7;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #FDFBF7;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-accent {
    font-style: italic;
    color: #A7F3D0;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(253, 251, 247, 0.78);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.28s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #FDFBF7;
    color: #064E3B;
    border-color: #FDFBF7;
}

.btn-primary:hover {
    background: #A7F3D0;
    border-color: #A7F3D0;
    color: #064E3B;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background: transparent;
    color: #FDFBF7;
    border-color: rgba(253, 251, 247, 0.5);
}

.btn-outline-light:hover {
    background: rgba(253, 251, 247, 0.12);
    border-color: #FDFBF7;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(253, 251, 247, 0.7);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-trust-item svg {
    color: #6EE7B7;
}

.hero-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(253, 251, 247, 0.25);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(253, 251, 247, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== Menu Section ========== */
.menu-section {
    background: #FDFBF7;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.menu-tab {
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid #D1FAE5;
    border-radius: 50px;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #047857;
    cursor: pointer;
    transition: all 0.25s ease;
}

.menu-tab:hover {
    background: #ECFDF5;
    border-color: #6EE7B7;
}

.menu-tab.active {
    background: #059669;
    border-color: #059669;
    color: #FDFBF7;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.menu-item {
    display: flex;
    gap: 20px;
    background: #FAF6EE;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 78, 59, 0.1);
}

.menu-item-image {
    flex: 0 0 140px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.08);
}

.menu-item-content {
    flex: 1;
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.menu-item-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #064E3B;
}

.menu-item-tag {
    padding: 2px 10px;
    background: #D1FAE5;
    color: #047857;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: #047857;
    opacity: 0.7;
    line-height: 1.6;
    flex: 1;
}

.menu-item-order {
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #059669;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.menu-item-order:hover {
    gap: 8px;
    color: #047857;
}

/* ========== About Section ========== */
.about-section {
    background: linear-gradient(180deg, #ECFDF5 0%, #FDFBF7 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.15);
    border: 4px solid #FDFBF7;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #34D399);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDFBF7;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    color: #047857;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.85;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(6, 78, 59, 0.1);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: #047857;
    opacity: 0.7;
    font-weight: 600;
}

/* ========== Specials Section ========== */
.specials-section {
    background: #FDFBF7;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.special-card {
    background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(6, 78, 59, 0.12);
}

.special-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 50%;
}

.special-card-badge {
    display: inline-block;
    padding: 4px 14px;
    background: #059669;
    color: #FDFBF7;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.special-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(253, 251, 247, 0.7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    margin-bottom: 20px;
}

.special-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #064E3B;
    margin-bottom: 10px;
}

.special-card-desc {
    font-size: 0.95rem;
    color: #047857;
    line-height: 1.7;
    opacity: 0.8;
}

/* ========== Visit Section ========== */
.visit-section {
    background: linear-gradient(180deg, #FDFBF7 0%, #ECFDF5 100%);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.visit-subtitle {
    font-size: 1.05rem;
    color: #047857;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.visit-detail-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}

.visit-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visit-detail-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #059669;
}

.visit-detail-value {
    font-size: 1rem;
    color: #064E3B;
    line-height: 1.6;
}

.visit-detail-link {
    color: #059669;
    font-weight: 700;
    transition: color 0.2s ease;
}

.visit-detail-link:hover {
    color: #047857;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.1);
}

/* ========== CTA Section ========== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #064E3B 0%, #047857 50%, #059669 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(167, 243, 208, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(110, 231, 183, 0.06) 0%, transparent 40%),
                      radial-gradient(circle at 60% 80%, rgba(52, 211, 153, 0.05) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FDFBF7;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(253, 251, 247, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Footer ========== */
.footer {
    background: #064E3B;
    color: rgba(253, 251, 247, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FDFBF7;
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: #6EE7B7;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 240px;
}

.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FDFBF7;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.6);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #A7F3D0;
    padding-left: 4px;
}

.footer li {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ========== Mobile Menu ========== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 78, 59, 0.97);
    backdrop-filter: blur(12px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #FDFBF7;
    padding: 8px;
}

.mobile-menu a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #FDFBF7;
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: #A7F3D0;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 100svh;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero-trust-divider {
        width: 40px;
        height: 1px;
    }

    .menu-category.active {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-image {
        flex: 0 0 200px;
    }

    .menu-item-content {
        padding: 16px 20px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-secondary {
        right: 0;
        bottom: -24px;
    }

    .about-img-accent {
        top: -12px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .about-img-accent svg {
        width: 28px;
        height: 28px;
    }

    .about-stats {
        gap: 24px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

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

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
