/* C & E Sprinkler — Custom Styles */

/* Base reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scroll for all anchor links */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: #f59e0b;
    color: #102a43;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f0f4f8;
}
::-webkit-scrollbar-thumb {
    background: #9fb3c8;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #627d98;
}

/* Prevent layout shift on images */
img {
    max-width: 100%;
    height: auto;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Ensure mobile menu button is accessible */
#menuBtn {
    touch-action: manipulation;
}

/* Print styles */
@media print {
    nav, #contact, .bounce-slow {
        display: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}

/* Reduced motion */
@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;
    }
    .fade-up {
        opacity: 1;
        transform: none;
    }
    .bounce-slow {
        animation: none;
    }
}
