/* ==========================================================
   ANIMATIONS.CSS - Keyframes and animation utilities
   ========================================================== */

/* ---------------------------------------------------------
   Fade in up (for scroll-triggered elements)
   --------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
