/* Custom Styles for The Boss Carwash */

html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture background if needed, otherwise solid color */
    background-image: radial-gradient(#d1cbb3 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #E6DCC4;
}
::-webkit-scrollbar-thumb {
    background: #C05640;
}
::-webkit-scrollbar-thumb:hover {
    background: #1C1917;
}

/* Form Focus Effects */
input:focus, textarea:focus {
    background-color: #fff;
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
