/* Custom Styles for Sushi Hibachi */

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

/* Fade In Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

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

/* Scroll Reveal Base State */
.reveal-on-scroll {
    opacity: 1; /* Default visible for no-JS */
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* JS adds this class to trigger animation */
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for JS (if JS works, we hide first then show) */
/* Note: We use JS to add 'revealed' class. 
   To prevent FOUC (Flash of Unstyled Content), 
   we set default visible, but JS handles the timing. */

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(10, 25, 47, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px 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;
}
