/**
 * Footer Scroll Fix
 * Overrides scroll-snap and ensures proper footer display
 * Loaded AFTER bundle.optimized.css
 */

/* CRITICAL: Disable scroll-snap that blocks footer scrolling */
html {
    scroll-snap-type: none !important;
}

body {
    scroll-snap-type: none !important;
    overflow-y: auto !important;
}

section {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
}

.footer {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Footer headings - consistent styling */
.footer-col h3 {
    color: white !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    letter-spacing: normal !important;
}

/* Ensure all h3 in footer-col look the same */
.footer .footer-col h3,
.footer-grid .footer-col h3 {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}
