/* Custom Styles for Gaby's Barber Shop */

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

/* Custom Animations */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2E1065;
}

::-webkit-scrollbar-thumb {
    background: #FBBF24;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F59E0B;
}

/* Hero Text Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header h1,
header p,
header .flex {
    animation: fadeInUp 0.8s ease-out forwards;
}

header h1 {
    animation-delay: 0.2s;
}

header p {
    animation-delay: 0.4s;
}

header .flex {
    animation-delay: 0.6s;
}

/* Service Card Hover Effect */
.group:hover .group-hover\:rotate-12 {
    transform: rotate(12deg);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Form Focus Styles */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(46, 16, 101, 0.98) !important;
    backdrop-filter: blur(10px);
}
