/* ============================================================
   UNIVERSAL SCROLL SNAP — APPLY TO ENTIRE PAGE
   ============================================================ */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    scroll-snap-type: y mandatory;
}

/* Sections that should snap */
.hero-section,
.horiz-section,
.static-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: calc(var(--vh) * 100);
    width: 100vw;
}

/* Prevent sub-elements from snapping */
.hero-section * ,
.horiz-section * ,
.static-section * {
    scroll-snap-align: none !important;
}
