/* Custom Styles for JohnGale Salon */

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

/* Base Typography */
body {
    background-color: #1a0a12;
    color: #e7e5e4;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Selection Color */
::selection {
    background-color: #b45309;
    color: #1a0a12;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a0a12;
}
::-webkit-scrollbar-thumb {
    background: #2d0f20;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4a1535;
}

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}
#mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
}

/* Service Card Hover Effects */
.group:hover .group-hover\:text-amber-500 {
    color: #d97706;
}
