/* Custom Styles for Johnny's Barbershop */

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

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

::-webkit-scrollbar-track {
    background: #1e1e1e;
}

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

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

/* Gradient Text Utility */
.text-gradient {
    background: linear-gradient(to right, #FF6F61, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle Glow Effect */
.glow-coral {
    box-shadow: 0 0 20px rgba(255, 111, 97, 0.3);
}

/* Animation for floating cards */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.3);
}
