/*
Theme Name: Rave the Bridge
Theme URI: https://ravethebridge.de
Author: Marina Stanic
Description: Komplettes Festival-Theme mit Cyberpunk-Dashboard & Team-Management
Version: 3.1
Text Domain: ravethebridge
*/
:root {
    --magenta: #ff00ff;
    --cyan: #00ffff;
    --dark-bg: #0a0a0a;
    --dark-card: rgba(20, 20, 20, 0.8);
    --text-light: #ffffff;
    --text-gray: #888888;
}
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}
/* Responsive Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Utility Classes */
.text-magenta { color: var(--magenta); }
.text-cyan { color: var(--cyan); }
.bg-dark { background: var(--dark-card); }
/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================
   MOBILE FIX
   ============================================ */

@media (max-width: 768px) {

    .container {
        padding: 0 1rem;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    /* HERO */
    .hero {
        padding: 100px 15px 40px !important;
        min-height: 100svh !important;
        overflow: hidden !important;
    }

    .hero h1,
    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem) !important;
        line-height: 1.1 !important;
        word-break: break-word !important;
    }

    /* COUNTDOWN – alle 4 Boxen auf den Screen */
    .countdown-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

    .countdown-item {
        padding: 10px 4px !important;
        min-width: 0 !important;
        border-radius: 8px !important;
    }

    .countdown-item .number,
    .countdown-number {
        font-size: clamp(1.3rem, 7vw, 1.8rem) !important;
        line-height: 1 !important;
    }

    .countdown-item .label,
    .countdown-label {
        font-size: 0.55rem !important;
        letter-spacing: 0 !important;
    }

    /* NAVIGATION */
    .main-nav {
        gap: 8px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .main-nav a {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        padding: 4px 6px !important;
    }

    /* HEADER */
    .main-header {
        padding: 10px 15px !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    /* BEWERBUNGS-KARTEN */
    .apply-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 !important;
    }

    /* TICKET */
    .ticket-grid,
    .tickets-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* SECTIONS */
    section {
        padding: 50px 15px !important;
    }

    .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
    }
}

@media (max-width: 400px) {
    .countdown-item .number,
    .countdown-number {
        font-size: 1.2rem !important;
    }

    .countdown-item .label,
    .countdown-label {
        font-size: 0.5rem !important;
    }

    .hero h1,
    .hero-title {
        font-size: 1.9rem !important;
    }
}