    /* ===== Custom Styles for Foxworthy Beauty Salon ===== */
    
    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Selection Color */
    ::selection {
        background-color: rgba(201, 168, 76, 0.3);
        color: #fff;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0a0f1e;
    }
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #c9a84c, #b8943f);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #d4b965, #c9a84c);
    }
    
    /* ===== Animations ===== */
    
    /* Hero Content Animation */
    .hero-content {
        animation: fadeInUp 1s ease-out forwards;
        opacity: 0;
    }
    
    .hero-image {
        animation: fadeInRight 1s ease-out 0.3s forwards;
        opacity: 0;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Reveal on Scroll */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Navbar Scroll Effect */
    #navbar.scrolled {
        background: rgba(10, 15, 30, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile Menu Animations */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }
    
    #mobileMenu.closed {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Hamburger Animation */
    #menuBtn.active #bar1 {
        transform: translateY(6px) rotate(45deg);
    }
    #menuBtn.active #bar2 {
        opacity: 0;
    }
    #menuBtn.active #bar3 {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    /* Mobile Links */
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }
    
    #mobileMenu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
    
    /* Gold Shimmer Effect */
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }
    
    .gold-shimmer {
        background: linear-gradient(90deg, #c9a84c 0%, #f0d78c 50%, #c9a84c 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 4s linear infinite;
    }
    
    /* Pulse Glow */
    @keyframes pulseGlow {
        0%, 100% {
            box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
        }
        50% {
            box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
        }
    }
    
    .pulse-glow {
        animation: pulseGlow 3s ease-in-out infinite;
    }
    
    /* Image Hover Zoom */
    .img-zoom {
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .img-zoom:hover {
        transform: scale(1.05);
    }
    
    /* Card Hover Glow */
    .card-glow:hover {
        box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
    }
    
    /* ===== Responsive Adjustments ===== */
    
    @media (max-width: 768px) {
        .hero-content {
            text-align: center;
        }
        
        #hero .grid {
            text-align: center;
        }
        
        #hero .flex-wrap {
            justify-content: center;
        }
        
        #hero .flex.items-center.gap-8 {
            justify-content: center;
        }
        
        .hero-image {
            order: -1;
            max-width: 400px;
            margin: 0 auto;
        }
    }
    
    @media (max-width: 640px) {
        .font-display {
            font-family: 'Playfair Display', serif;
        }
        
        .font-body {
            font-family: 'Inter', sans-serif;
        }
    }
    
    /* ===== Prefers Reduced Motion ===== */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        html {
            scroll-behavior: auto;
        }
        
        .reveal {
            opacity: 1;
            transform: none;
        }
    }
