/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    overflow-x: hidden;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(6, 95, 70, 0.1);
}

.nav-logo-text {
    color: #064e3b;
    transition: color 0.4s ease;
}

#navbar.scrolled .nav-logo-text {
    color: #064e3b;
}

.nav-link {
    font-weight: 700;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

/* ===== MENU TABS ===== */
.menu-tab {
    padding: 10px 22px;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.875rem;
    cursor: pointer;
    border: 2px solid #d1fae5;
    background: white;
    color: #065f46;
    transition: all 0.3s ease;
    font-family: 'Nunito', system-ui, sans-serif;
}

.menu-tab:hover {
    border-color: #059669;
    background: #ecfdf5;
}

.menu-tab.active {
    background: #065f46;
    border-color: #065f46;
    color: #fefdf8;
}

/* ===== MENU ITEMS ===== */
.menu-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== GALLERY ===== */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu-link {
    display: block;
}

/* ===== UTILITIES ===== */
::selection {
    background: #a7f3d0;
    color: #064e3b;
}

/* Smooth focus */
:focus-visible {
    outline: 2px solid #059669;
    outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .font-serif {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}
