    /* Custom styles for Moe Barbershop & Hair Salon */

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

    /* Selection color */
    ::selection {
        background-color: rgba(212, 168, 83, 0.3);
        color: #f8fafc;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #475569;
    }

    /* Scroll reveal base - content always visible by default */
    .scroll-reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Only apply hidden state when JS is active and motion is preferred */
    .js-enabled .scroll-reveal {
        opacity: 0;
        transform: translateY(24px);
    }

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

    /* Navbar glass effect */
    #navbar.scrolled {
        background-color: rgba(15, 23, 42, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(51, 65, 85, 0.5);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
    }

    /* Gold gradient text utility */
    .gold-gradient {
        background: linear-gradient(135deg, #d4a853 0%, #c49a3c 50%, #f0d68a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Subtle shimmer animation for gold elements */
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }

    /* Mobile menu transition */
    #mobile-menu {
        animation: slideDown 0.3s ease forwards;
    }
    #mobile-menu.hidden {
        animation: slideUp 0.2s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideUp {
        from { opacity: 1; transform: translateY(0); }
        to { opacity: 0; transform: translateY(-8px); }
    }

    /* Mobile link hover */
    .mobile-link {
        transition: all 0.2s ease;
    }

    /* Prevent layout shift on images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Focus visible for accessibility */
    :focus-visible {
        outline: 2px solid #0d9488;
        outline-offset: 2px;
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
        .font-display {
            line-height: 1.1;
        }
    }
