/* Base scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Enable scroll snap only for devices wider than 768px */
@media (min-width: 769px) {
    html {
        scroll-snap-type: y mandatory;
    }

    .snap-scroll {
        scroll-snap-align: start;
    }
}