/* ============================================================
   KINETIC STUDIO — Index (Snap Scroll) Stylesheet
   Applies to: index.html only
   ============================================================ */

/* Kinetic snap-scroll container */
#snap-container {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Each snap section fills exactly one viewport */
.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
