    /* Custom styles for Neon Shade Hair Fashion */

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Selection color */
    ::selection {
        background-color: #d14a32;
        color: #faf9f7;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f5f3ee;
    }
    ::-webkit-scrollbar-thumb {
        background: #dcd6c8;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #b39d7d;
    }

    /* Hero animations - only below the fold */
    @media (prefers-reduced-motion: no-preference) {
        .hero-ornament {
            animation: fadeInDown 1s ease-out 0.2s both;
        }
        .hero-subtitle {
            animation: fadeInDown 1s ease-out 0.4s both;
        }
        .hero-headline {
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        .hero-description {
            animation: fadeInUp 1s ease-out 0.8s both;
        }
        .hero-cta {
            animation: fadeInUp 1s ease-out 1s both;
        }
        .hero-scroll {
            animation: fadeIn 1s ease-out 1.2s both;
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Scroll reveal animations - below the fold content */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile menu animations */
    .menu-line {
        transition: all 0.3s ease-in-out;
    }

    #mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 1.5rem;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background-color: rgba(250, 249, 247, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

    #navbar.scrolled .nav-text {
        color: #554535;
    }

    #navbar.scrolled .nav-link {
        color: #685440;
    }

    /* Service card hover effect */
    .group:hover .group-hover\:scale-105 {
        transform: scale(1.05);
    }

    /* Form focus styles */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #e06348 !important;
        box-shadow: 0 0 0 3px rgba(224, 99, 72, 0.1);
    }

    /* Button hover effects */
    button[type="submit"]:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(224, 99, 72, 0.3);
    }

    /* Gallery image hover */
    .group:hover .group-hover\:scale-110 {
        transform: scale(1.1);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .font-serif {
            font-size: clamp(2rem, 8vw, 3.5rem);
        }
    }

    /* Print styles */
    @media print {
        header, footer, .reveal {
            display: none;
        }
        body {
            color: #000;
            background: #fff;
        }
    }
