    /* Custom Styles for Kathleen's Hair Styling */
    
    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: #05101C; /* Midnight 900 */
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #05101C;
    }
    ::-webkit-scrollbar-thumb {
        background: #112240;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #45C9B0;
    }

    /* Animation Utilities */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Navbar Glass Effect */
    #navbar.scrolled {
        background-color: rgba(5, 16, 28, 0.95);
        backdrop-filter: blur(10px);
        padding-top: 1rem;
        padding-bottom: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    /* Form Focus States */
    input:focus, select:focus, textarea:focus {
        border-color: #45C9B0 !important;
    }
