/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* ─── Hero Gradient ─── */
.hero-gradient {
    background: linear-gradient(135deg, #052e16 0%, #14532d 25%, #166534 50%, #15803d 75%, #1e3a5f 100%);
}

/* ─── Hero Dot Pattern ─── */
.hero-pattern {
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ─── Hero Orbs ─── */
.hero-orb { pointer-events: none; }
.hero-orb-1 { background: radial-gradient(circle, rgba(74,222,128,0.4) 0%, transparent 70%); }
.hero-orb-2 { background: radial-gradient(circle, rgba(34,197,94,0.3) 0%, transparent 70%); }

/* ─── Scroll Indicator ─── */
.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ─── Navbar ─── */
#navbar {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
#navbar.scrolled {
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(22,101,52,0.08);
}
.nav-logo-text { transition: color 0.3s ease; }
#navbar.scrolled .nav-logo-text { color: #052e16; }
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #166534;
    transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }
#navbar.scrolled .nav-link { color: #14532d; }
#navbar.scrolled .nav-link:hover { color: #166534; }
#navbar.scrolled .nav-link::after { background: #166534; }

/* ─── Mobile Menu ─── */
.mobile-link { padding: 0.5rem 0; border-bottom: 1px solid rgba(22,101,52,0.06); }
.mobile-link:last-of-type { border-bottom: none; }

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal:not(.revealed) {
    opacity: 1;
    transform: translateY(0);
}

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

/* ─── Card Tilt ─── */
.card-tilt {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-tilt:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(5,46,22,0.1);
}

/* ─── Hours Orbs ─── */
.hours-orb1, .hours-orb2 { pointer-events: none; }

/* ─── Button Focus ─── */
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* ─── Selection ─── */
::selection { background: rgba(22,101,52,0.2); color: #052e16; }
</style>
