/* global.css — adjust selectors if your Studio structure differs */
:root { scroll-behavior: smooth; }
body, html {
height: 100%;
}
/* set the scroll container — in Studio this might be the main content wrapper.
Try body, or replace .site-root with your main container's class if needed */
body {
scroll-snap-type: y mandatory;
overflow-y: auto;
}
.snap-section {
scroll-snap-align: start;
scroll-snap-stop: always; /* makes snapping stricter */
min-height: 100vh; /* ensures each section fills the viewport */
}