*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest-dark: #1B4332;
    --forest-mid: #2D6A4F;
    --forest-light: #52B788;
    --forest-pale: #95D5B2;
    --forest-ghost: #D8F3DC;
    --off-white: #F8F6F0;
    --cream: #F0EDE4;
    --warm-gray: #6B6560;
    --dark-text: #1A1A1A;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}

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

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--dark-text);
    background: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, .logo span {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--forest-dark);
    color: var(--off-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 700;
}
.skip-link:focus {
    top: 16px;
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background: rgba(248, 246, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--forest-dark);
}
.logo-icon {
    color: var(--forest-dark);
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--forest-dark);
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-menu a:hover {
    background: var(--forest-ghost);
}
.nav-menu .btn-nav {
    background: var(--forest-dark);
    color: var(--off-white) !important;
    margin-left: 8px;
}
.nav-menu .btn-nav:hover {
    background: var(--forest-mid);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--forest-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn:active {
    transform: translateY(0);
}
.btn-primary {
    background: var(--forest-dark);
    color: var(--off-white);
}
.btn-primary:hover {
    background: var(--forest-mid);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--off-white);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}
.btn-ghost {
    background: transparent;
    color: var(--forest-dark);
    border: 2px solid var(--forest-dark);
}
.btn-ghost:hover {
    background: var(--forest-dark);
    color: var(--off-white);
}
.btn-map {
    margin-top: 24px;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/14994661/pexels-photo-14994661.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(27, 67, 50, 0.88) 0%,
        rgba(45, 106, 79, 0.82) 50%,
        rgba(27, 67, 50, 0.85) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 820px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--forest-pale);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    color: var(--off-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(248, 246, 240, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(248, 246, 240, 0.5);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Section shared ─── */
.section {
    padding: 100px 0;
}
.section-label {
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--forest-light);
    background: var(--forest-ghost);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--forest-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── About ─── */
.about {
    background: var(--off-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--off-white);
}
.about-img-secondary img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}
.about-accent {
    position: absolute;
    top: -20px;
    right: 40px;
    color: var(--forest-pale);
    opacity: 0.6;
}
.about-text p {
    color: var(--warm-gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-size: 1.5rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--warm-gray);
    font-weight: 600;
}

/* ─── Food ─── */
.food {
    background: var(--cream);
}
.food .container {
    text-align: center;
}
.food .section-subtitle {
    margin: 0 auto 56px;
}
.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.food-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.food-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.food-card-img {
    overflow: hidden;
    height: 220px;
}
.food-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.food-card:hover .food-card-img img {
    transform: scale(1.05);
}
.food-card-body {
    padding: 28px;
    text-align: left;
}
.food-card-body h3 {
    font-size: 1.35rem;
    color: var(--forest-dark);
    margin-bottom: 10px;
}
.food-card-body p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ─── Games / Features ─── */
.games {
    background: var(--forest-dark);
    color: var(--off-white);
}
.games .container {
    text-align: center;
}
.games .section-label {
    background: rgba(149, 213, 178, 0.2);
    color: var(--forest-pale);
}
.games .section-title {
    color: var(--off-white);
}
.games .section-subtitle {
    color: rgba(248, 246, 240, 0.65);
    margin: 0 auto 56px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: background 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(149, 213, 178, 0.15);
    border-radius: var(--radius-sm);
    color: var(--forest-pale);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 10px;
}
.feature-card p {
    color: rgba(248, 246, 240, 0.65);
    font-size: 0.938rem;
    line-height: 1.65;
}

/* ─── Visit ─── */
.visit {
    background: var(--off-white);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.visit-desc {
    color: var(--warm-gray);
    font-size: 1.05rem;
    margin-top: 16px;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-ghost);
    border-radius: var(--radius-sm);
    color: var(--forest-dark);
}
.contact-item strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.938rem;
    color: var(--forest-dark);
    margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
    color: var(--warm-gray);
    font-size: 0.938rem;
    line-height: 1.5;
}
.contact-item a:hover {
    color: var(--forest-mid);
    text-decoration: underline;
}
.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
}
.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* ─── CTA ─── */
.cta {
    background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-dark) 100%);
    padding: 96px 0;
    text-align: center;
}
.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--off-white);
    margin-bottom: 16px;
}
.cta-subtitle {
    color: rgba(248, 246, 240, 0.75);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta .btn-primary {
    background: var(--off-white);
    color: var(--forest-dark);
}
.cta .btn-primary:hover {
    background: var(--cream);
    background: #fff;
}
.cta .btn-ghost {
    border-color: rgba(248,246,240,0.5);
    color: var(--off-white);
}
.cta .btn-ghost:hover {
    background: rgba(248,246,240,0.15);
    border-color: var(--off-white);
    color: var(--off-white);
}

/* ─── Footer ─── */
.footer {
    background: var(--forest-dark);
    color: rgba(248, 246, 240, 0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer .logo {
    color: var(--off-white);
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: rgba(248, 246, 240, 0.6);
}
.footer strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.938rem;
    color: var(--off-white);
    margin-bottom: 12px;
}
.footer p {
    font-size: 0.938rem;
    line-height: 1.7;
}
.footer a {
    color: rgba(248, 246, 240, 0.6);
    transition: color 0.2s ease;
}
.footer a:hover {
    color: var(--forest-pale);
}
.footer-bottom {
    border-top: 1px solid rgba(248, 246, 240, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.813rem;
    color: rgba(248, 246, 240, 0.4);
}

/* ─── Scroll reveal (below fold only) ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-secondary {
        right: 16px;
        bottom: -24px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--off-white);
        flex-direction: column;
        align-items: stretch;
        padding: 96px 24px 32px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu a {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 1.05rem;
    }
    .nav-menu .btn-nav {
        margin-left: 0;
        text-align: center;
        justify-content: center;
        margin-top: 12px;
    }
    .food-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 72px 0;
    }
    .about-img-secondary img {
        width: 180px;
        height: 140px;
    }
    .about-stats {
        gap: 20px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
