/* Base Template Styles - Extracted from templates/base.html */

/* Smooth Scroll Snap for Sections */
html {
    scroll-behavior: smooth;
}

.snap-container {
    scroll-snap-type: y proximity;
}

/* Apply snap to full viewport sections */
section[class*="min-h-[calc(100vh"] {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

/* Smoother scroll on iOS/Safari */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* Ensure smooth momentum scrolling */
body, main {
    -webkit-overflow-scrolling: touch;
}

