/* Global Scroll Animations */

/* Default State: Hidden and shifted down */
.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Visible State: Fully visible and in place */
.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion Preference: Disable animations */
@media (prefers-reduced-motion: reduce) {
    .reveal-section {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
