/* Custom styles for Windy Knoll Lawn and Landscaping */

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

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

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

::-webkit-scrollbar-thumb {
    background: #d9a87e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b5854e;
}

/* Selection color */
::selection {
    background-color: #f6e9e6;
    color: #8e382d;
}

/* Navbar scroll effect handled in JS */
#navbar.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Image aspect ratio utilities */
.aspect-\[4\/5\] {
    aspect-ratio: 4/5;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
