/* ==========================================================================
   ZULQARNAIN HAIDER — SUBTLE ISLAMIC ACADEMIC ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(201, 164, 92, 0.15);
    }
    50% {
        box-shadow: 0 0 25px rgba(201, 164, 92, 0.35);
    }
}

[data-animate="fade-in"] {
    animation: fadeIn 0.8s ease forwards;
}

[data-animate="slide-up"] {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.soft-glow-box {
    animation: softGlow 4s ease-in-out infinite;
}

/* Respect User Preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
