    /* Custom styles for Restaurante Jalisco */
    
    html {
        scroll-behavior: smooth;
    }

    /* Scroll reveal animations - progressive enhancement via JS */
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #F0FFF8;
    }
    ::-webkit-scrollbar-thumb {
        background: #4DD5B4;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #2ABF9A;
    }

    /* Selection color */
    ::selection {
        background: #B5F5E2;
        color: #0A1628;
    }

    /* Mobile menu transition */
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Subtle hover lift for cards */
    .group:hover .group-hover\:scale-105 {
        transform: scale(1.05);
    }

    /* Image aspect ratio fallbacks */
    .aspect-\[4\/5\] {
        aspect-ratio: 4/5;
    }
    .aspect-\[4\/3\] {
        aspect-ratio: 4/3;
    }
    .aspect-\[3\/4\] {
        aspect-ratio: 3/4;
    }

    /* Nav link underline animation */
    .nav-link {
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #4DD5B4;
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }

    /* Mobile link styles */
    .mobile-link {
        position: relative;
        padding-left: 0;
    }
    .mobile-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: #4DD5B4;
        transition: width 0.3s ease;
    }
    .mobile-link:hover::before {
        width: 16px;
    }
