body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* AUTHENTIC HERO: Banana Leaf Feast */
.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1552590635-27c2c2128abf?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
/* Scrollbar: Deep Green */
::-webkit-scrollbar-thumb {
    background: #14532d; 
    border-radius: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Checkbox Customization: Green Check, Yellow/Cream BG */
.menu-checkbox:checked + div {
    background-color: #fefce8; /* Light Yellow */
    border-color: #15803d; /* Green Border */
}

/* Active Tab: Deep Green */
.menu-tab.active {
    background-color: #14532d;
    color: white;
    border-color: #14532d;
}