/* animations.css - Keyframe animations and transitions */

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(243, 85, 37, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(243, 85, 37, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(243, 85, 37, 0.4);
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}
