/* Grundlegende Stile, die Sie bereits definiert haben */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #40E0D0, #FFD580);
}

p {
    margin-left: 1em;
    margin-right: 1em;
    color: white;
    font-size: 1.2em;
}

#kontakt-div{
    margin-left: 5%;
    margin-right: 5%;
    background-color: lightgrey;
}

.stage {
    margin: 20px;
    width: 80%;
}

.stage h2 {
    margin-bottom: 10px;
}
h4{
    margin-bottom: 4px;
}

.band-info-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.band-info {
    flex: 1;
    padding: 10px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    max-width: 90%;
    margin-left: 5%;
}

.previous-band {
    background-color: #FFA07A;
}

.current-band {
    background-color: #32CD32;
}

.next-band {
    background-color: #58D3F7;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 15px; left: 15px;
}

.hamburger div {
    background-color: #333;
    height: 3px;
    width: 100%;
    margin: 4px 0;
}

nav {
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
    display: none; /* Startet unsichtbar */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    padding: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

/* Media Queries für verschiedene Bildschirmgrößen */

/* Kleinere Bildschirme (z.B. Handys) */
@media (max-width: 600px) {
    body {
        flex-direction: column;
    }

    .band-info-container {
        flex-direction: column;
        gap: 5px;
    }

    .band-info {
        margin: 10px 5%;
        text-align: center;
    }
    .whatsapp{
        font-size: 2.5vw;
    }
    .button{
        font-size: 2.5vw;
    }
}

/* Mittelgroße Bildschirme (z.B. Tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    .band-info-container {
        flex-direction: row;
        gap: 20px;
    }

    .band-info {
        padding: 20px;
        max-width: 100%;
        margin-left: 0;
    }
    .whatsapp{
        font-size: 1.5vw;
    }
    .button{
        font-size: 1.5vw;
    }
}

/* Größere Bildschirme (z.B. Desktop) */
@media (min-width: 1025px) {
    .stage {
        width: 60%;
    }

    .band-info {
        font-size: 1.4em;
    }
    .whatsapp{
        font-size: 1.25vw;
    }
    .button{
        font-size: 1.5vw;
    }

    p {
    margin-left: 25%;
    margin-right: 25%;
    color: white;
    font-size: 1.2em;
}

}
