/* Fade In Up Utility */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    /* transition is handled by GSAP */
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Float */
.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}