    /* Custom styles for Angel's Latin Restaurant II */
    
    html {
        scroll-behavior: smooth;
    }
    
    @media (prefers-reduced-motion: no-preference) {
        .scroll-reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Fallback: ensure content is visible even if JS is disabled */
    @media (prefers-reduced-motion: reduce) {
        .scroll-reveal {
            opacity: 1;
            transform: none;
        }
    }
    
    /* Navbar scroll state */
    .navbar-scrolled {
        background: rgba(15, 16, 20, 0.95) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #0f1014;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #3f434b;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #52575f;
    }
    
    /* Selection color */
    ::selection {
        background: rgba(255, 107, 53, 0.3);
        color: #f6f6f7;
    }
    
    /* Mobile menu transition */
    #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    #mobile-menu.open {
        max-height: 400px;
    }
    
    /* Button focus styles */
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
        outline: 2px solid #ff6b35;
        outline-offset: 2px;
    }
