/* === Reset === */
* {margin:0; padding:0; box-sizing:border-box;}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #111;
}

a { color: #ffcc00; text-decoration: none; }
a:hover { text-decoration: underline; }

/* === Header & Navigation === */
header {
  background: rgba(0,0,0,0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
nav .logo {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a {
  color: #fff;
  font-weight: 600;
}

/* Hamburger Menü */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.nav-links.open {
  display: block;
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  .nav-links li {
    margin: 0.5rem 0;
  }
}

/* === Sections === */
section {
  padding: 4rem 2rem;
  text-align: center;
}
section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

/* Hintergrundmuster je Sektion */
#hero {
  background: url("pictures/sectionbg_start.svg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;  
}
#news {
  background: url("patterns/guitar.svg");
  background-size: 400px;
  background-color: #D3BDAE;
}
#music {
  background: url("patterns/saxophone.svg");
  background-size: 350px;
  background-color: #DCA552;
}
#dates {
  background: url("patterns/drums.svg");
  background-size: 350px;
  background-color: #E2964D;
}
#band {
  background: url("patterns/microphone.svg");
  background-size: 350px;
  background-color: #9B5A44;
}
#contact {
  background: url("patterns/bass.svg");
  background-size: 400px;
  background-color: #5E3D2C;
}
#legal {
  background: url("patterns/records.svg");
  background-size: 200px;
  background-color: #333333;
}

/* Hero */
#hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
}
#hero img {
  max-width: 280px;
  margin-bottom: 1rem;
}
#hero p {
  max-width: 600px;
  font-size: 1.2rem;
}

/* Iframes */
#news iframe {
  width: 100%;
  max-width: 400px;
  height: 600px;
  border: none;
}
#music iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border: none;
}
.concert-list {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto;
}
.concert-item {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 8px;
}
.concert-item .date {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffcc00;
  margin-right: 1.5rem;
  min-width: 120px;
}
.concert-item .info h3 {
  margin: 0;
  font-size: 1.2rem;
}
.concert-item .info p {
  margin: 0.3rem 0;
  color: #ddd;
}
.concert-item a {
  color: #ffcc00;
  font-weight: bold;
}
@media (max-width: 600px) {
  .concert-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .concert-item .date {
    margin-bottom: 0.5rem;
  }
}
/* Bandtext */
#band .pressetext {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  text-align: justify;
  background: rgba(0,0,0,0.5);
  padding: 1.5rem;
  border-radius: 8px;
}

/* Bandmitglieder */
#band .members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto;
}
#band .members div {
  background: rgba(0,0,0,0.6);
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}
#band .members img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 50%;
}

/* Galerie quadratisch */
#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
}
#gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

#lightbox {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}
#lightbox #close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

footer {
  background: #000;
  padding: 2rem;
  text-align: center;
}
footer a {
  margin: 0 0.5rem;
  font-size: 1.2rem;
}
