.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-info {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.event-info-card {
    animation: scaleIn 0.6s ease-out;
}

.event-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.event-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.event-info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.event-info-card:nth-child(4) {
    animation-delay: 0.4s;
}

.event-info-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.program-card {
    animation: fadeInUp 0.6s ease-out;
}

.program-card:nth-child(1) {
    animation-delay: 0.1s;
}

.program-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card {
    animation: fadeInUp 0.6s ease-out;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

.why-card:nth-child(5) {
    animation-delay: 0.5s;
}

.why-card:nth-child(6) {
    animation-delay: 0.6s;
}

.ticket-card {
    animation: fadeInUp 0.6s ease-out;
}

.ticket-card:nth-child(1) {
    animation-delay: 0.1s;
}

.ticket-card:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.nav-link::after {
    transition: width 0.3s ease;
}

.nav-toggle span {
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    transition: max-height 0.3s ease;
}

@keyframes heroBackground {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.program-placeholder svg,
.map-placeholder svg {
    animation: pulse 3s ease-in-out infinite;
}

.program-placeholder svg:nth-child(2),
.map-placeholder svg:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-icon svg {
    animation: pulse 3s ease-in-out infinite;
}

.feature-icon svg:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-icon svg:nth-child(3) {
    animation-delay: 0.6s;
}

.event-info-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

.event-info-icon svg:nth-child(2) {
    animation-delay: 0.3s;
}

.event-info-icon svg:nth-child(3) {
    animation-delay: 0.6s;
}

.event-info-icon svg:nth-child(4) {
    animation-delay: 0.9s;
}

.event-info-icon svg:nth-child(5) {
    animation-delay: 1.2s;
}

.hero-icon {
    animation: pulse 3s ease-in-out infinite;
}

.hero-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-icon:nth-child(3) {
    animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}