/* 
    Tulip's Brunch House - Custom Styles
    Palette: Emerald Green (#1A4D3E), Cream (#F9F7F2), Gold (#C5A059)
*/

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F2;
    color: #2C2C2C;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F9F7F2;
}
::-webkit-scrollbar-thumb {
    background: #1A4D3E;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0F3228;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

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

/* Navbar Glass Effect */
.nav-scrolled {
    background-color: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-transparent {
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
    border-bottom-width: 2px;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}

#mobile-menu.open {
    display: flex;
    opacity: 1;
}

#mobile-menu.closed {
    display: none;
    opacity: 0;
}
