/* Custom overrides to delay footer WebGL animation trigger */

/* Add spacer before footer to push it further down the viewport */
.section.footer {
    margin-top: 100vh !important; /* Push footer down by full viewport height */
}

/* Alternative: Hide footer from WebGL observer until it's actually in view */
.section.footer::before {
    content: '';
    display: block;
    height: 50vh; /* Additional buffer space */
    margin-top: -50vh;
}
