/* ============================================================
   HARDTWALDBATTERIE – Event Page Specific Styles
   Styles unique to walpurgisnacht-anmeldung.html
   ============================================================ */


/* === Hero (event page variant) === */
.hero {
    padding: 10rem 2rem 4rem;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(139, 37, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.05) 0%, transparent 40%),
        var(--gradient-ritual);
}

/* Hero title with fire gradient (event page) */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold) 40%, var(--accent-fire) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fire-shimmer 4s ease-in-out infinite;
}

.hero-subtitle {
    max-width: 700px;
}


/* === Main Content (event page wider layout) === */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}


/* === Info Section === */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


/* === Footer (event page with z-index) === */
footer {
    background: var(--bg-void);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    position: relative;
    z-index: 10;
}


/* === Countdown === */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.countdown__item {
    text-align: center;
}

.countdown__value {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.countdown__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.5rem;
    display: block;
}

.countdown__separator {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-ember);
    margin-top: -1rem;
}

.countdown--live {
    justify-content: center;
    gap: 1rem;
}

.countdown__live-indicator {
    width: 12px;
    height: 12px;
    background: var(--accent-fire);
    border-radius: 50%;
    animation: pulse-glow 1s ease-in-out infinite;
}

.countdown__live-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--accent-fire);
}

.countdown__value--flip {
    transform: scale(1.1);
    transition: transform 0.1s ease;
}


/* === Event Gallery Highlights === */

.event-gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-gallery .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.event-gallery .section-title {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-light, #f5f0e8);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.event-gallery .section-subtitle {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold, #c9a227);
    opacity: 0.6;
}

.gallery-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(201, 162, 39, 0.1);
    margin: 0;
    transition: border-color 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.highlight-item:hover img {
    transform: scale(1.05);
}

.gallery-cta {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold, #c9a227);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.gallery-cta:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--accent-gold, #c9a227);
}

@media (max-width: 600px) {
    .gallery-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .event-gallery {
        padding: 3rem 1rem;
    }
}
