/* =========================
   GLOBAL
========================= */

@font-face {
    font-family: "Underground";
    src: url("assets/fonts/08 Underground.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

section {
    padding: 60px 20px;
}

h2 {
    /*font-family: "Mostwasted", sans-serif;*/
    font-family: "Underground", sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
}

h3 {
    font-family: "Underground", sans-serif;
}

.policy-content h2 {
    font-family: Arial, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    color: inherit;
    max-width: 700px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

header {
    padding: 30px 0 0 0;
}

.logo {
    width: 300px;
    max-width: 80%;
    filter: drop-shadow(0 0 10px red);
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 30px 20px;
    color: white;
    font-size: 0.9rem;
}

.insta-link-no-border {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.insta-link-no-border:hover {
    opacity: 0.6;
}

/* =========================
   HEADINGS
========================= */

h2 {
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid red;
}

/* =========================
   LIST RESET
========================= */

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* =========================
   LINKS
========================= */

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 2px solid red;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.button:hover {
    background: red;
}


/* =========================
   CAROUSEL
========================= */

.carousel {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.carousel-track {
    display: flex;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🔥 WICHTIGER FIX */
.slide img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: contain; /* Bild bleibt korrekt proportioniert */
}


/* =========================
   NAV BUTTONS
========================= */

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* =========================
   DOTS
========================= */

.dots {
    text-align: center;
    margin-top: 15px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: gray;
    border-radius: 50%;
    cursor: pointer;
}

.dots .active {
    background: white;
}

/* =========================
   AUDIO DARK STYLE
========================= */

audio {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;

    filter: invert(1) hue-rotate(180deg);
}

@media (max-width: 768px) {

    /* =========================
       MOBILE GLOBAL
    ========================= */
    body {
        font-size: 14px;
    }

    section {
        padding: 40px 15px;
    }


    /* =========================
       HEADER
    ========================= */
    .logo {
        width: 300px; /* größer auf Mobile */
    }


    /* =========================
       CAROUSEL
    ========================= */
    .slide img {
        max-height: 400px;
    }

    .nav {
        font-size: 2.5rem;
        padding: 12px 18px;
    }


    /* =========================
       DOTS
    ========================= */
    .dots span {
        width: 14px;
        height: 14px;
    }

    .dots .active {
        transform: scale(1.3);
    }

}

.video {
    margin-top: 2rem;
}

.video iframe {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
}

/* =========================
   SHOWS
========================= */

#show-list {
    max-width: 700px;
    margin: 0 auto;
}

.show-item {
    margin-bottom: 20px;
    padding: 15px 20px;
    border-left: 4px solid red;
    background: rgba(255, 255, 255, 0.03);
    text-align: left;

    transition: 0.2s ease;
}

.show-item.has-flyer .show-main {
    cursor: pointer;
    user-select: none;
}

.show-main {
    position: relative;
}

.flyer-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.25s ease;
}

.show-item.expanded .flyer-indicator {
    transform: translateY(-50%) rotate(180deg);
}

.flyer-container {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
            grid-template-rows 0.3s ease,
            opacity 0.25s ease;
}

.flyer-container > img {
    min-height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 15px auto 0;
    display: block;
}

.show-item.expanded .flyer-container {
    grid-template-rows: 1fr;
    opacity: 1;
}

.show-item:hover {
    transform: translateX(5px);
    background: rgba(255, 0, 0, 0.08);
}

.show-main {
    font-weight: bold;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.lineup {
    margin-top: 8px;
    color: #bbb;
    font-size: 0.9rem;
}

.show-date {
    color: red;
    font-weight: bold;
    margin-bottom: 4px;
}

.show-location {
    font-size: 1.1rem;
}

.lineup {
    margin-top: 10px;
    color: #999;
}

table {
    width: auto;
    border-collapse: collapse;
    margin: 1rem auto;
}

th,
td {
    border: 1px solid #555;
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

th {
    font-weight: bold;
}

.rider-content {
    max-width: 700px;
    margin: 0 auto;
}

.stage-plot {
    display: block;
    max-width: 700px;
    width: 100%;
    margin: 1rem auto;
    border-radius: 4px; /* optional */
}

.collapsible {
    margin-bottom: 2rem;
}

.collapsible summary {
    cursor: pointer;
    list-style: none;
}

.collapsible summary::-webkit-details-marker {
    display: none;
}

.collapsible summary h2 {
    display: inline-block;
    margin: 0;
}

.collapsible summary::before {
    content: "▶";
    display: inline-block;
    margin-right: 10px;
    transition: transform .25s ease;
}

.collapsible[open] summary::before {
    transform: rotate(90deg);
}

.collapsible table {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
}

.collapsible[open] table {
    opacity: 1;
    transform: translateY(0);
}

.downloads {
    text-align: center;
    padding: 4rem 1rem;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-card {
    max-width: 320px;
}

.download-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.techrider-block {
    max-width: 700px;
    margin: 2rem auto 1.5rem;
}
