/* Custom styles for Geneseo Super Wash */

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

/* Floating animation for hero badge */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Service card hover effects */
.service-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

/* Navbar scroll effect */
.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Back to top button */
#back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

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

::-webkit-scrollbar-track {
    background: #f7f3fa;
}

::-webkit-scrollbar-thumb {
    background: #874a87;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6e3b6e;
}

/* Input focus styles */
input:focus,
select:focus,
textarea:focus {
    border-color: #874a87;
    box-shadow: 0 0 0 4px rgba(135, 74, 135, 0.1);
}

/* Button ripple effect */
button,
a {
    position: relative;
    overflow: hidden;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
