/* Custom styles for Dining Car */

:root {
    --color-green-900: #14532d;
    --color-green-800: #166534;
    --color-green-700: #15803d;
    --color-green-600: #16a34a;
    --color-green-500: #22c55e;
    --color-green-400: #4ade80;
    --color-green-300: #86efac;
    --color-green-200: #bbf7d0;
    --color-green-100: #dcfce7;
    --color-stone-50: #fafaf9;
    --color-stone-100: #f5f5f4;
    --color-stone-500: #78716c;
    --color-stone-600: #57534e;
    --color-stone-800: #292524;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.font-serif {
    font-family: 'DM Serif Display', serif;
}

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

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(20, 83, 45, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* Smooth hover transitions */
a, button {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4;
}

::-webkit-scrollbar-thumb {
    background: #166534;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #14532d;
}

/* Animation for scroll reveals */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
    
    .animate-bounce {
        animation: none;
    }
}

/* Mobile menu transitions */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
