/* Entrance Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mechanical Bull Animation */
@keyframes bullBuck {
    0% { transform: rotate(-2deg); }
    25% { transform: rotate(5deg) translateY(-5px); }
    50% { transform: rotate(-5deg) translateY(0); }
    75% { transform: rotate(3deg) translateY(-3px); }
    100% { transform: rotate(0deg); }
}

.mechanical-bull {
    animation: bullBuck 2s infinite ease-in-out;
}

/* Applied Classes */
.animate-fade {
    animation: fadeIn 1s ease-out;
}

.animate-slide {
    animation: slideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-pulse:hover {
    animation: pulse 1s infinite;
}

/* Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }