/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatingAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes orbitAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5), 0 0 40px rgba(241, 85, 126, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 60px rgba(241, 85, 126, 0.6);
    }
}

@keyframes scrollIndicatorAnimation {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes arrowDown {
    0%, 20% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80%, 100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

@keyframes shimmerEffect {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.floating-card {
    animation: floatingAnimation 3s ease-in-out infinite;
}

.orbit {
    animation: orbitAnimation 20s linear infinite;
}

.border-glow {
    animation: glowPulse 2s ease-in-out infinite;
}

.scroll-indicator {
    animation: scrollIndicatorAnimation 2s ease-in-out infinite;
}

.scroll-indicator span {
    animation: arrowDown 1.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}
