    /* Custom styles for Brush Creek Grill */
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Selection color */
    ::selection {
        background-color: rgba(212, 168, 83, 0.3);
        color: #fff;
    }
    
    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #0a1a1a;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #1a4a4a;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #2d7070;
    }
    
    /* Navigation styles */
    .nav-link {
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(to right, #d4a853, transparent);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    /* Reveal animation - progressive enhancement */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Fallback for no JS */
    @media (prefers-reduced-motion: reduce) {
        .reveal {
            opacity: 1;
            transform: none;
        }
    }
    
    /* Mobile menu animation */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }
    
    /* Gold shimmer effect */
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }
    
    .gold-shimmer {
        background: linear-gradient(90deg, #d4a853, #f0d68a, #d4a853);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 3s linear infinite;
    }
    
    /* Subtle pulse for CTA */
    @keyframes pulse-gold {
        0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
        50% { box-shadow: 0 0 20px 5px rgba(212, 168, 83, 0.2); }
    }
    
    .cta-pulse:hover {
        animation: pulse-gold 2s ease-in-out infinite;
    }
    
    /* Image hover zoom container */
    .img-zoom {
        overflow: hidden;
    }
    
    .img-zoom img {
        transition: transform 0.7s ease;
    }
    
    .img-zoom:hover img {
        transform: scale(1.05);
    }
