/**
 * Smooth Scrolling CSS
 * Simple smooth scrolling experience without animations
 */

/* ============================================
   Smooth Scrolling Base
   ============================================ */

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
