/* Custom Styles for Sammy's Beauty Salon */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #4a154d;
}
::-webkit-scrollbar-thumb {
    background: #F4B942;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

/* Animation Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Mobile Menu Transitions */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Form Focus Styles */
input:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(244, 185, 66, 0.2);
}

/* Image Hover Effects */
img {
    transition: transform 0.5s ease;
}

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}
