    /* Custom styles for Hair Candy by Sabrina */
    
    * {
        scroll-behavior: smooth;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Hero animations */
    .hero-tagline {
        animation: fadeUp 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .hero-headline {
        animation: fadeUp 0.8s ease-out 0.2s forwards;
        opacity: 0;
    }
    
    .hero-body {
        animation: fadeUp 0.8s ease-out 0.4s forwards;
        opacity: 0;
    }
    
    .hero-cta {
        animation: fadeUp 0.8s ease-out 0.6s forwards;
        opacity: 0;
    }
    
    .hero-image-container {
        animation: fadeIn 1s ease-out 0.3s forwards;
        opacity: 0;
    }
    
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* Service card hover */
    .service-card {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card:hover {
        transform: translateY(-8px);
    }
    
    /* Gallery item hover */
    .gallery-item {
        cursor: pointer;
    }
    
    .gallery-item img {
        transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Navbar scroll effect */
    #navbar.scrolled {
        background: rgba(254, 253, 248, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 0 rgba(20, 83, 45, 0.1);
    }
    
    /* Mobile menu */
    #mobile-menu {
        z-index: 40;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #fefdf8;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #166534;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #15803d;
    }
    
    /* Selection color */
    ::selection {
        background: #166534;
        color: #fefdf8;
    }
