/**
 * Revinova AI Theme: Animations
 * EXACT PARITY with Astro project (TextAnimation.astro)
 */

/* Initial State */
.opacity-0 {
    opacity: 0;
}

.translate-y-6 {
    transform: translateY(24px);
    /* 1.5rem */
}

/* Transition Config */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-700 {
    transition-duration: 700ms;
}

/* Optimization */
[data-delay] {
    will-change: opacity, transform;
}