/* === Grundlayout === */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background: url(../Medien/Band/DH-.jpg) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* === Haupt-Container === */
.container {
    width: 95%;
    max-width: 1000px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* === Kontaktinfos === */
.info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.8rem;
    text-align: center;
}

.info h1 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.info a {

    color: #00ccff;
    text-decoration: none;
    font-size: 1.1rem;
}
.a{	font-family: sans-serif;}

.info a:hover {
    text-decoration: underline;
}

/* === Cookie-Platzhalter === */
.cookie-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 0.8rem;
    text-align: center;
    font-size: 1rem;
}

.cookie-placeholder button {
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background-color: #00ccff;
    border: none;
    border-radius: 0.5rem;
    color: black;
    cursor: pointer;
    font-weight: bold;
}

.cookie-placeholder button:hover {
    background-color: #00b2e6;
}

/* === Cookie-Content – allgemein (YouTube, TikTok, etc.) === */
.cookie-content {
    display: none;
    text-align: center;
}

.cookie-content iframe {
    width: 100%;
    max-width: 100%;
    height: 360px;
    border: none;
    border-radius: 0.5rem;
}

/* === Zwei-Column-Layout für Spotify & SoundCloud === */
.cookie-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.cookie-row .cookie-content {
    flex: 1 1 48%;
    min-width: 280px;
}

.cookie-row iframe {
    width: 100%;
    height: 152px;
    border-radius: 0.5rem;
    border: none;
}

/* === Mobile Anpassung === */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .info h1 {
        font-size: 1.4rem;
    }

    .info a {
        font-size: 1rem;
    }

    .cookie-row {
        flex-direction: column;
    }

    .cookie-row .cookie-content {
        flex: 1 1 100%;
    }

    .cookie-content iframe {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .cookie-row iframe {
        height: auto;
        aspect-ratio: 16 / 5; /* etwas flacher für Musikplayer */
    }
}
