/* Festival Countdown Section Styles */
.festival-countdown-section {
    position: relative;
    overflow: hidden;
}

.countdown-hero-container {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.85) 0%,
        rgba(147, 51, 234, 0.75) 50%,
        rgba(244, 63, 94, 0.8) 100%
    );
    z-index: 1;
}

.countdown-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    padding: 2rem 0;
}

.countdown-header {
    margin-bottom: 3rem;
}

.countdown-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.countdown-date-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-location,
.countdown-duration {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-timer-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.countdown-number.pulse {
    transform: scale(1.1);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.7;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 0.7; }
    51%, 100% { opacity: 0.3; }
}

.countdown-actions {
    margin-top: 3rem;
}

.countdown-btn,
.countdown-btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.countdown-btn {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.countdown-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    color: white;
}

.countdown-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.countdown-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Decorative Elements */
.countdown-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.element-4 {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .countdown-title {
        font-size: 3rem;
    }
    
    .countdown-timer {
        padding: 1.5rem 2rem;
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .countdown-hero-container {
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .countdown-title {
        font-size: 2.5rem;
    }
    
    .countdown-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-date-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .countdown-timer {
        padding: 1rem 1.5rem;
        gap: 0.5rem;
        border-radius: 15px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
    
    .countdown-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-btn,
    .countdown-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .countdown-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .countdown-item {
        flex: 1;
        min-width: 70px;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

/* Festival Live State */
.festival-live .countdown-timer {
    background: linear-gradient(45deg, #10b981, #059669);
    animation: pulse 2s infinite;
}

.festival-live .countdown-title::after {
    content: " - LIVE NOW!";
    color: #10b981;
    animation: pulse 1.5s infinite;
}

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