/* Allgemeine Stile */
body {
    height: max-content;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header-Bild */
.header-image {
    width: 100%;
    height: 600px;
    background-image: url('/images/band.png'); /* Hier den Pfad zum Header-Bild einfügen */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-image h1 {
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.6); /* Halbtransparenter Hintergrund für besseren Kontrast */
    padding: 10px 20px;
    border-radius: 8px;
}

/* Hauptinhalt */
.content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content h2 {
    margin-top: 0;
}

/* Musiker-Abschnitte */
.musicians {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.musician {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.musician img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.musician h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.musician ul {
    list-style: none;
    padding: 0;
}

.musician ul li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    /* Header-Bild */
    .header-image {
        width: 100%;
        height: 150px;
        background-image: url('/images/band.png'); /* Hier den Pfad zum Header-Bild einfügen */
        background-size: cover;
        background-position: center;
        text-align: center;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}