/* File: docs/overrides/css/home/hero-animations.css */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.atlas-hero__text h2 {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1) forwards;
}

.atlas-hero__title {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1) 0.2s forwards;
}

.atlas-hero__tagline {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1) 0.4s forwards;
}

.atlas-hero__cards {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1) 0.6s forwards;
}
