/* ============================================
   ANIMATE.CSS — Keyframes & Transition Utilities
   ============================================ */

/* — Fade In — */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* — Scale — */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* — Float / Pulse — */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* — Glow — */
@keyframes goldGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(199, 165, 74, 0.15);
    }

    50% {
        box-shadow: 0 0 40px rgba(199, 165, 74, 0.3);
    }
}

/* — Utility Classes — */
.animate-fade-in {
    animation: fadeIn 0.8s var(--ease-out) both;
}

.animate-fade-up {
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.animate-fade-down {
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s var(--ease-out) both;
}

.animate-fade-right {
    animation: fadeInRight 0.8s var(--ease-out) both;
}

.animate-scale {
    animation: scaleIn 0.8s var(--ease-out) both;
}

.animate-float {
    animation: float 3.5s ease-in-out infinite;
}

.animate-glow {
    animation: goldGlow 2.5s ease-in-out infinite;
}

/* Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-900 {
    animation-delay: 0.9s;
}

.delay-1000 {
    animation-delay: 1s;
}

/* Scroll Reveal Hidden State */
[data-scrollreveal] {
    visibility: hidden;
}