/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-1: #1f7045;
    --color-2: #357e58;
    --color-3: #4c8d6a;
    --color-4: #629b7d;
    --color-5: #79a98f;
    --color-6: #8fb8a2;
    --color-7: #a5c6b5;
    --color-8: #bcd4c7;
    --color-9: #d2e2da;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

img, video, iframe, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(to right, var(--color-1), var(--color-2), var(--color-3), var(--color-4), var(--color-5), var(--color-6), var(--color-7), var(--color-8), var(--color-9));
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-left:hover {
    transform: scale(1.1);
}

.header-left:hover .logo {
    transform: none;
}

.header-left:hover .header-title {
    transform: none;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
    border: none;
    background: rgba(255,255,255,0.95);
    color: var(--color-1);
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav {
    position: relative;
    z-index: 1050;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--color-1);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    background: white;
    border-radius: 6px;
    padding: 8px 16px;
}

nav a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

nav a.active {
    text-decoration: underline;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

nav a.contact {
    background: #f9db5e;
    color: #3b3b3b;
    font-weight: 700;
    border: 2px solid #e4af2f;
}

nav a.contact:hover {
    background: #f6c93b;
    transform: scale(1.08);
}

nav a.contact.active {
    background: #f4b612;
}

.header-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

/* ===== HERO SECTION ===== */
.hero {
    width: 100%;
    height: 650px;
    background: url('images/Start.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.about-photo {
    flex: 1;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.about-photo:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-photo img {
    transition: transform 0.3s ease;
}

.about-photo:hover img {
    transform: scale(1.05);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
    min-height: 200px;
}

.about-content h2 {
    font-size: 32px;
    color: var(--color-1);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    background: linear-gradient(to right, var(--color-1), var(--color-2), var(--color-3), var(--color-4), var(--color-5), var(--color-6), var(--color-7), var(--color-8), var(--color-9));
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--color-1);
}

.social-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT FIELD TIMER STYLE ===== */
.contact-field-timer {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-field-timer:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-field-timer a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
}

/* Nur auf Desktop: Kontaktseite Email und Telefon nach unten verschieben */
@media (min-width: 769px) {
    #kontakt .contact-field-timer a {
        margin-top: 20px;
        display: inline-block;
    }
    
    .kontakt-bg-section-card .contact-field-timer a {
        margin-top: 20px;
        display: inline-block;
    }
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background: white;
    padding: 40px;
    text-align: center;
}

.contact-cta-button {
    font-size: 20px;
    margin-top: 125px;
    padding: 12px 20px;
    background: #f9db5e;
    color: #3b3b3b;
    font-weight: 700;
    border: 2px solid #e4af2f;
    text-decoration: none;
    border-radius: 6px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.contact-cta-button:hover {
    background: #f6c93b;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    transform: scale(1.05);
}

/* ===== KONTAKT BG SECTION ===== */
.kontakt-bg-section {
    position: relative;
    min-height: 430px;
    padding: 60px 20px;
    background: url('images/kontakt_bg.jpg') center/cover fixed no-repeat;
    color: white;
    overflow: hidden;
}

.kontakt-bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.kontakt-bg-section-card {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.kontakt-bg-section-card h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-content {
    flex: 1;
    min-height: 200px;
    text-align: left;
}

.gallery-content h3 {
    font-size: 32px;
    color: var(--color-1);
    margin-bottom: 20px;
}

.gallery-content p {
    font-size: 15px;
    line-height: 1.4;
    color: #666;
    white-space: pre-line;
}

.gallery-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.gallery-container .arrow:first-of-type {
    grid-column: 1;
    grid-row: 1;
}

.gallery-photo {
    grid-column: 2;
    grid-row: 1;
}

.gallery-container .arrow:last-of-type {
    grid-column: 3;
    grid-row: 1;
}

.gallery-dots {
    grid-column: 2;
    grid-row: 2;
}

.arrow {
    pointer-events: all;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #1f7045;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    user-select: none;
    transition: transform 0.3s ease;
}

.arrow:hover {
    transform: scale(1.2);
}

.gallery-photo {
    width: 500px;
    height: 300px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-8);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--color-1);
    transform: scale(1.2);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
    padding: 60px 40px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-section h2 {
    font-size: 32px;
    color: var(--color-1);
    margin-bottom: 40px;
    text-align: center;
}

.schedule-table {
    width: 100%;
    margin-bottom: 40px;
}

.schedule-table tr {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 40px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-9);
}

.schedule-table tr:first-child {
    font-weight: bold;
    color: var(--color-1);
    border-bottom: 2px solid var(--color-1);
}

.schedule-table td {
    padding: 0;
    color: #555;
}

/* ===== TERMINE BACKGROUND + COUNTDOWN ===== */
.termine-bg-section {
    position: relative;
    min-height: 520px;
    padding: 60px 20px;
    background: url('images/termine_bg.jpg') center/cover fixed no-repeat;
    filter: brightness(1.2);
    color: white;
    overflow: hidden;
}

.termine-bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.termine-countdown-card {
    position: relative;
    max-width: 760px;
    margin: 90px auto 0 auto;
    text-align: center;
    z-index: 1;
    animation: slideInUp 1s ease-out;
}

.termine-countdown-card h2 {
    margin-bottom: 16px;
    font-size: 36px;
    color: #fff;
}

.termine-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.termine-countdown-timer .time-unit {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    min-width: 90px;
    padding: 12px 10px;
}

.termine-countdown-timer .time-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    transition: transform 0.7s ease;
}

.termine-countdown-timer .time-label {
    font-size: 14px;
    color: #f1f1f1;
    margin-top: 4px;
}

.termine-countdown-text {
    font-size: 20px;
    margin-top: 6px;
    color: #fff;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.termine-countdown-card.fade-in {
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* ===== MUSIKER CAROUSEL ===== */
.musiker-section {
    padding: 60px 80px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.musiker-section h2 {
    font-size: 32px;
    color: var(--color-1);
    text-align: center;
    margin-bottom: 28px;
}

.musiker-carousel {
    position: relative;
    overflow: hidden;
    max-width: calc(320px * 3 + 16px * 2);
    margin: 0 auto;
    padding-bottom: 24px;
}

.musiker-track {
    display: flex;
    gap: 16px;
    transition: transform 0.6s ease;
    width: max-content;
}

.musiker-card {
    flex: 0 0 320px;
    width: 320px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 320px;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.musiker-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.musiker-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.musiker-card-content {
    padding: 14px;
    text-align: center;
}

.musiker-card-content h3 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #1f7045;
}

.musiker-card-content h4 {
    margin-bottom: 4px;
    font-size: 16px;
    color: #5c715b;
}

.musiker-card-content p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #777;
}

.musiker-card-content .ig-link {
    display: block;
    text-align: center;
    margin-top: 8px;
    margin-left: 140px;
}

.musiker-card-content .ig-link img {
    width: 24px;
    height: 24px;
}

.musiker-carousel-nav {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

.musiker-carousel-nav button {
    pointer-events: all;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #1f7045;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    user-select: none;
    transition: transform 0.3s ease;
}

.musiker-dots {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 1 !important;
    visibility: visible !important;
}

.musiker-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-8);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.musiker-dots .dot.active {
    background: var(--color-1);
    transform: scale(1.2);
    opacity: 1 !important;
    visibility: visible !important;
}

.crew-section h2 {
    font-size: 32px;
    color: var(--color-1);
    margin-bottom: 40px;
    text-align: center;
}

.crew-content {
    min-height: 300px;
    color: #666;
    font-size: 16px;
}

.crew-section {
    padding: 60px 40px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.crew-section h2 {
    font-size: 32px;
    color: var(--color-1);
    margin-bottom: 40px;
    text-align: center;
}

.crew-content {
    min-height: 300px;
    color: #666;
    font-size: 16px;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 40px;
    text-align: center;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-button {
    margin-left: 20px;
    padding: 8px 16px;
    border: 1px solid #f4b612;
    background: #f9db5e;
    color: #3b3b3b;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-button:hover {
    transform: translateY(-2px);
    background: #f6c93b;
}

.footer-links a:hover {
    color: var(--color-9);
}

/* ===== IMPRESSUM + DATENSCHUTZ DESKTOP ===== */
#impressum .schedule-section > div[style],
#datenschutz .schedule-section > div[style] {
    margin-bottom: 50px;
    text-align: center !important;
}

#impressum .schedule-section > div[style] h3,
#datenschutz .schedule-section > div[style] h3,
#impressum .schedule-section > div[style] p,
#datenschutz .schedule-section > div[style] p {
    text-align: center;
}

#impressum .schedule-section p,
#datenschutz .schedule-section p {
    text-align: justify;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        min-height: 64px;
    }

    .header-left {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        width: auto;
    }

    .logo {
        width: 30px;
        height: 30px;
        object-fit: cover;
    }

    .header-title {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 140px;
    }

    .mobile-menu-toggle {
        display: block;
        top: 28px;
    }

    .hero {
        height: calc(40vh + 100px);
        min-height: 280px;
        max-height: 420px;
        background-position: top center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .about-content h2,
    .gallery-content h3,
    .about-content p,
    .gallery-content p,
    .schedule-section h2,
    .crew-section h2,
    .kontakt-bg-section-card h2 {
        text-align: center;
    }

    .about-content,
    .gallery-content,
    .schedule-section,
    .crew-content {
        text-align: center;
    }

    .kontakt-bg-section {
        background-position: left center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .kontakt-bg-section-card form {
        max-width: calc(100% - 100px);
        margin: 0 auto;
        padding: 0 50px;
    }

    .kontakt-bg-section-card form input,
    .kontakt-bg-section-card form textarea {
        width: 100%;
        max-width: calc(100% - 100px);
        padding: 10px;
        margin: 0 auto 10px;
        box-sizing: border-box;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: min(90vw, 320px);
        height: 100vh;
        background: white;
        box-shadow: -6px 0 18px rgba(0,0,0,0.25);
        padding: 74px 16px 16px 16px;
        z-index: 1050;
        overflow-y: auto;
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin: 0;
        padding: 0;
    }

    nav a {
        display: block;
        width: 100%;
        margin: 0;
        padding: 12px 14px;
    }

    .about-section,
    .gallery-section,
    .crew-section,
    .contact-cta,
    .kontakt-bg-section-card {
        flex-direction: column;
        align-items: center;
        padding: 30px 16px;
        width: 100%;
    }

    .about-section,
    .gallery-section {
        gap: 12px;
    }

    .about-photo {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .about-content,
    .gallery-content,
    .schedule-section,
    .crew-content {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .gallery-container {
        gap: 10px;
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        padding: 0;
    }

    .gallery-photo {
        width: 100%;
        max-width: 100%;
        height: 220px;
        overflow: hidden;
        display: block;
    }

    .gallery-photo img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        display: block;
    }

    .schedule-section {
        padding: 30px 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .musiker-section {
        padding: 30px 0;
        background: white;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .musiker-carousel {
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .musiker-track {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin: 0 auto;
    }

    .musiker-card {
        flex: 0 0 calc(100% - 40px);
        max-width: calc(100% - 40px);
        min-width: calc(100% - 40px);
        margin: 0 auto 12px auto;
        height: auto;
        border-radius: 14px;
    }

    .musiker-card img {
        width: 100%;
        height: auto;
        max-height: 275px;
        object-fit: cover;
        border-radius: 14px 14px 0 0;
    }

    .musiker-card-content {
        padding: 10px;
    }

    .musiker-card-content .ig-link {
        display: flex;
        justify-content: center;
        margin-top: 8px;
        margin-left: 0;
    }

    .musiker-card-content .ig-link img {
        width: 36px;
        height: 36px;
    }

    .musiker-dots,
    .musiker-carousel-nav {
        display: none;
    }

    .schedule-table {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        display: block;
    }

    .schedule-table tr {
        display: block;
        width: 100%;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid var(--color-9);
        text-align: left;
    }

    .schedule-table td {
        display: block;
        text-align: left;
        width: 100%;
        padding: 5px 0;
        color: #555;
        border-bottom: none;
    }

    .schedule-table td:nth-child(3) {
        text-align: left;
    }

    .schedule-table tr:first-child {
        font-weight: bold;
        border-bottom: 2px solid var(--color-1);
        text-align: left;
    }

    .social-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        padding: 20px 0;
    }

    .termine-bg-section {
        min-height: 360px;
        padding: 24px 12px;
        background-attachment: scroll;
    }

    .termine-countdown-card {
        padding: 18px;
        margin: 0 auto;
        max-width: 94%;
    }

    .termine-countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .termine-countdown-timer .time-unit {
        min-width: 72px;
        padding: 10px;
    }

    .musiker-card {
        flex: 0 0 calc(100% - 40px);
        max-width: calc(100% - 40px);
        min-width: calc(100% - 40px);
        margin: 0 auto 12px auto;
        height: auto;
        border-radius: 14px;
    }

    .musiker-card img {
        width: 100%;
        height: auto;
        max-height: 275px;
        object-fit: cover;
        border-radius: 14px 14px 0 0;
    }

    .musiker-card-content {
        padding: 10px;
    }

    .musiker-card-content .ig-link {
        display: flex;
        justify-content: center;
        margin-top: 8px;
        margin-left: 0;
    }

    .musiker-card-content .ig-link img {
        width: 36px;
        height: 36px;
    }

    .musiker-carousel {
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .musiker-track {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin: 0 auto;
    }

    .musiker-dots,
    .musiker-carousel-nav {
        display: none;
    }

    .musiker-carousel {
        max-width: 100%;
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }

    /* Impressum + Datenschutz mobil: Text kleiner + 50px Abstand */
    #impressum .schedule-section,
    #datenschutz .schedule-section {
        padding: 30px 20px;
    }

    #impressum .schedule-section > div[style],
    #datenschutz .schedule-section > div[style] {
        margin-bottom: 50px;
    }

    #impressum .schedule-section p,
    #datenschutz .schedule-section p {
        font-size: 14px;
        text-align: justify;
    }

    #impressum .schedule-section h3,
    #datenschutz .schedule-section h3 {
        text-align: left;
    }

    .contact-cta {
        padding: 20px 12px;
    }

    .contact-cta-button {
        width: 100%;
        max-width: 360px;
        padding: 12px;
    }

    footer {
        padding: 20px 14px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-button {
        margin-left: 0;
    }

    .contact-field-timer {
        font-size: 1.1rem;
    }
}