/* Cookie Banner */
.cookie-banner {
    display: none;        /* wird per JS eingeblendet */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #fff;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 1000;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #ccc;
    text-decoration: underline;
}

.cookie-banner button {
    background: #fff;
    color: #111;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}

.cookie-banner button:hover {
    background: #ddd;
}

/* Basic resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header .logo img {
    max-height: 60px;
    flex-shrink: 0;
}

.band-name {
    font-size: 1.5rem;
    margin-left: 0;
}

@media (max-width: 600px) {
    .site-header .container {
        flex-direction: column;
        text-align: center;
    }
    .band-name {
        font-size: 1rem;
    }
}


/* Hero */
.hero {
    /* use an img so the full picture is visible without cropping */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h2 {
    font-size: 2rem;
    z-index: 1;
}

/* Release section */
.release {
    margin: 4rem 0;
}

.release h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.release-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    /* ← zentriert das ganze Grid auf der Seite */
    text-align: left;
    /* ← Text linksbündig, sieht neben Bild sauberer aus */
    gap: 2rem;
}

.release-grid .cover {
    flex: 0 0 180px;
    max-width: 180px;
}

.release-grid .cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.release-grid .info {
    flex: 0 1 auto;
    /* ← nimmt nur so viel Platz wie nötig */
    font-size: large;
    font-weight: bold;
}

.release-grid .info p {
    margin: 0.5rem 0;
}

.release-grid .listen-now {
    font-weight: bold;
    margin-top: 1rem;
}

.stream-links {
    margin-top: 0.5rem;
}

.stream-links a {
    display: inline-block;
    margin-right: 0.5rem;
}

.stream-links img {
    width: 32px;
    height: 32px;
}

/* Bio */
.bio {
    margin: 4rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bio h2 {
    margin-bottom: 1rem;
}

.bio p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

/* Videos */
.videos {
    margin: 4rem 0;
    /* margin-bottom: 1rem entfernen */
    text-align: center;
}

.videos h2 {
    margin-bottom: 1rem;
    /* gleicher Abstand wie .gallery h2 */
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* untereinander */
    gap: 1.5rem;
    max-width: 700px;
    /* nicht zu breit */
    margin: 0 auto;
    /* zentriert */
}


.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Seitenverhältnis */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
        /* untereinander auf Mobil */
    }
}

.spotify-embed {
    margin: 4rem 0;
    /* margin-bottom: 1rem entfernen */
    text-align: center;
}

.spotify-embed h2 {
    margin-bottom: 1rem;
    /* gleicher Abstand wie .gallery h2 */
}

.spotify-embed {
    margin-top: 1.5rem;
    max-width: 600px;
    /* nicht zu breit */
    margin-left: auto;
    margin-right: auto;
    /* zentriert */
}


.gallery h2 {
    margin: 4rem 0;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* dritte Spalte etwas breiter für Querformat */
    grid-template-rows: 1fr 1fr;
    grid-gap: 1rem;
}

.portrait-wrap {
    grid-row: 1 / 3;
    /* überspannt beide Zeilen */
}

.portrait-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.landscape-stack {
    display: contents;
}

.landscape-stack img {
    width: 100%;
    height: 100%;
    /* füllt die Grid-Zelle komplett aus */
    object-fit: cover;
    display: block;
    border-radius: 4px;
}


/* Embed Platzhalter */
.embed-placeholder {
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
    color: #444;
    font-size: 0.95rem;
}

.embed-placeholder button {
    background: #222;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.embed-placeholder button:hover {
    background: #444;
}

.video-wrap .embed-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Footer */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Legal / Impressum */
.legal {
    margin: 3rem auto;
    max-width: 600px;
}

.legal h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
}

.legal p {
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.8;
}

.legal a {
    color: #222;
    text-decoration: underline;
}

.legal h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.legal h4 {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: #222;
}
