/* Additional custom styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FDFAF6;
    color: #1a202c;
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #022C22;
}

/* Hero background */
.hero-bg {
    background-image: url('https://images.pexels.com/photos/5083898/pexels-photo-5083898.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero overlay */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(2, 44, 34, 0.7), rgba(2, 44, 34, 0.85));
}

/* Navbar blur effect */
.nav-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Text shadow for hero */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Reveal animations - Progressive Enhancement */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating cards animation */
@media (prefers-reduced-motion: no-preference) {
    .float-1 {
        animation: float 6s ease-in-out infinite;
    }
    .float-2 {
        animation: float 8s ease-in-out infinite;
        animation-delay: 1s;
    }
    .float-3 {
        animation: float 7s ease-in-out infinite;
        animation-delay: 2s;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Menu card hover effect */
.menu-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mobile menu transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#mobile-menu.hidden {
    max-height: 0;
    opacity: 0;
}

#mobile-menu:not(.hidden) {
    max-height: 400px;
    opacity: 1;
}
