/* Animations */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Animations */
.hero-tagline {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
