/* Custom Styles for East Side Barbershop */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Oswald', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F5EBE0;
}
::-webkit-scrollbar-thumb {
    background: #C05640;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #A04030;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: #C05640;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.scissors-loader {
    width: 48px;
    height: 48px;
    border: 4px solid #F5EBE0;
    border-top: 4px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Focus Styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #C05640;
    box-shadow: 0 0 0 3px rgba(192, 86, 64, 0.2);
}
