/* ── Mobile Overrides ─────────────────────────────── */
/* Diese Datei bündelt die Mobile-Anpassungen für ALLE Sektionen.  */
/* Muss nach den einzelnen Section-CSS-Dateien eingebunden werden. */

@media (max-width: 768px) {

    /* Navbar */
    .navbar-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(0, 0, 0, 0.95);
        border-bottom: 1px solid rgba(0, 212, 255, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }
    .navbar-links.is-open {
        max-height: 320px;
    }
    .navbar-links a {
        padding: 14px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-toggle {
        display: flex;
    }

    .navbar-links .lang-switch {
        justify-content: center;
        margin: 16px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 14px 0 0;
    }

    /* Global section spacing */
    section{
        margin-bottom: 50px;
    }

    /* Hero / Home — aspect-ratio statt scale, kein Leerraum */
    .header {
        height: auto;
    }

    .hero-composite {
        transform: none;
        aspect-ratio: 1.5 / 1;
    }

    .hero-logo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .hero-eye-glow {
        top: 15%;
        left: 51%;
    }
    .hero-btn{
        margin-top: 60px;
    }
    .btn{
        padding: 10px;
    }
    .link-section svg{
        width: 45px;
        height: 35px;
    }

    /* Bio / About */
    .bio-section{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bio-left{
        text-align: center;
    }
    .shooting-figure{
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
    }
    .shooting-img{
        aspect-ratio: 3 / 4;
        width: 100%;
    }

    /* Shows */
    .shows-section {
        padding: 0 20px;
    }

    .show-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
    }

    .show-time {
        text-align: right;
    }

    .show-date {
        display: flex;
        flex-direction: column;
        grid-column: 1 / -1;
        gap: 12px;
    }
}

/* Booking — schmalere Formulare auf sehr kleinen Screens */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .booking-form {
        padding: 24px 20px;
    }
}
