:root {
    --black: #050505;
    --dark: #0d0d0d;
    --grey: #181818;
    --light: #f2f2f2;
    --muted: #999;
    --accent: #018a9f;
    --line: #292929;
}
#media {
    display: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--light);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 5%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
}

.nav {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav .logo {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 5px;
}

.nav .logo span {
    color: var(--accent);
}

.nav nav {
    display: flex;
    gap: 28px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav nav a {
    opacity: .8;
    transition: opacity .2s;
}

.nav nav a:hover {
    opacity: 1;
    color: white;
}

.hero {
    min-height: 820px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .25), rgba(0, 0, 0, 0.85)), url("images/hero.jpg") center 43% / cover no-repeat;
    background-color: #222;
}

.hero-content {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 280px 5% 100px;
}

.eyebrow {
    font-length: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(48px, 8vw, 105px);
    line-height: .9;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 650px;
    margin-top: 28px;
    font-size: 19px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 13px 24px;
    border: 1px solid white;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .2s;
}

.button:hover {
    background: white;
    color: black;
}

.button.red {
    border-color: var(--accent);
    background: var(--accent);
}

.button.red:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

section {
    padding: 100px 5%;
}

.container {
    max-width: 1250px;
    margin: auto;
}

.section-label {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
}

h2 {
    margin: 0 0 45px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

#tour {
    background: var(--dark);
}

.tour-intro {
    max-width: 700px;
    color: #aaa;
    margin-top: -20px;
    margin-bottom: 45px;
}

.tour-list {
    border-top: 1px solid var(--line);
}

.tour-item {
    display: grid;
    grid-template-columns: 150px 1fr 170px;
    gap: 30px;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid var(--line);
    /* Standardmäßig transparent (für ungerade Elemente) */
    background-color: #2e2e2e;
    transition: background 0.3s ease;
}
.tour-item:nth-child(even) {
    background: transparent;
}

.tour-date {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.tour-date span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tour-location {
    font-size: 22px;
    font-weight: bold;
}

.tour-address {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.ticket {
    justify-self: end;
    padding: 10px 18px;
    border: 1px solid #555;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ticket:hover {
    border-color: white;
    background: white;
    color: black;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #222;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    color: #aaa;
    font-size: 17px;
}

.about-text strong {
    color: white;
}

#band {
    background: var(--dark);
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.member {
    background: #111;
}

.member-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #222;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter .3s;
}

.member:hover img {
    filter: grayscale(0);
}

.member-info {
    padding: 20px;
}

.member-name {
    font-size: 19px;
    font-weight: bold;
}

.member-role {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.media-item {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #181818;
    overflow: hidden;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .65;
}

.media-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

#contact {
    background: #080808;
    text-align: center;
}

#contact p {
    color: #999;
}

footer {
    padding: 35px 5%;
    border-top: 1px solid var(--line);
    color: #666;
    font-size: 12px;
}

.footer-inner {
    max-width: 1250px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 800px) {
    header {
        position: absolute;
    }

    nav {
        display: none !important;
    }

    .hero {
        min-height: 850px;
        margin-top: -100px;
    }

    .hero-content {
        padding-bottom: 70px;
        height: 610px;
        padding: 280px 0px 350px
    }

    section {
        padding: 15px 6%;
    }

    .tour-item {
        grid-template-columns: 110px 1fr;
        align-items: baseline;
        gap: 8px;
        padding: 15px 15px;
    }

    .tour-date {
        font-size: 15px;
    }

    .tour-location {
        font-size: 20px;
    }

    .ticket {
        justify-self: start;
        margin-top: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .band-grid {
        grid-template-columns: 1fr 1fr;
    }
    #contact .button.red{
        width: 100%;
        margin-bottom: 8px;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    h1 {
        letter-spacing: -1px;
    }

    .band-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}