

.header {
    position: fixed;
    top: 0;
    width: 100%;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
    border: none;
    background: none;
    box-shadow: none;
}












.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px;
        width: 100%;
      padding-right: 1rem;
  padding-left: 1rem;
  justify-content: center;
}

    .nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.band-section {
    padding: 4rem 2rem;
    text-align: center;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.band-member {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}



.band-member h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}


.logo {
    font-size: 3rem;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
    background: none !important;
    border: none !important;
}

.nav a {
    color: white !important;
    background: none !important;
    border: none !important;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px black;
  margin: 0 0.5rem;
}

.menu-toggle {
    color: white !important;
    background: none !important;
}


.header .logo, .header .nav a, .header .menu-toggle {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
}


body, h1, h2, h3, h4, h5, h6, p, a, li {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}


.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 1rem;
    justify-items: center;
    align-items: start;
}

.band-member {
    text-align: center;
}




.band-member img {
    max-width: 100%;
    height: auto;
    max-width: 300px;
    margin: auto;
    display: block;
    border-radius: 0.75rem;
    box-shadow: none;
}



/* RESPONSIVE TYPOGRAFIE & MOBILANPASSUNG */
body {
    font-family: "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}
h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
p, li {
    font-size: 1.1rem;
}
.intro-text {
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    p, li { font-size: 1rem; }
    .intro-text {
        padding: 1rem;
    }
    .band-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo {
        font-size: 2rem !important;
    }
    .nav a {
        font-size: 1rem !important;
        margin: 0.25rem 0;
      margin: 0 0.5rem;
}
}


/* RESPONSIVE ANPASSUNG */
@media (max-width: 768px) {
  .custom-header {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .logo {
    font-size: 2rem !important;
    text-align: center;
    margin-bottom: 1rem;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-section {
    padding-top: 8rem !important;
    font-size: 1.2rem !important;
  }

  .contact-section hr {
    width: 120px !important;
    margin: 1rem auto !important;
  }
}


/* --- Fix für Band-Bilder Überlappung --- */

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.band-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.band-member img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

/* Responsive Anpassung für Smartphones */
@media (max-width: 600px) {
    .band-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}
