/* Custom styles for H & S Paving */

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

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #c2410c;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9a3412;
}

/* Selection color */
::selection {
    background: #c2410c;
    color: white;
}

/* Focus visible styles */
:focus-visible {
    outline: 3px solid #c2410c;
    outline-offset: 2px;
}

/* Button hover effects */
button, a {
    transition: all 0.2s ease;
}

/* Image loading optimization */
img {
    loading: lazy;
}

/* Reduce motion for accessibility */
@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;
    }
}

/* Print styles */
@media print {
    nav, #back-to-top, button {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
}
