/* ==================== ANIMATIONS.CSS ==================== */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-fade:nth-child(1) { animation-delay: 0.1s; }
.scroll-fade:nth-child(2) { animation-delay: 0.2s; }
.scroll-fade:nth-child(3) { animation-delay: 0.3s; }
.scroll-fade:nth-child(4) { animation-delay: 0.4s; }
.scroll-fade:nth-child(5) { animation-delay: 0.5s; }
.scroll-fade:nth-child(6) { animation-delay: 0.6s; }