 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;900&display=swap');

  body {
    margin: 0;
    background-color: #0f0f10;
    color: #eee;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-weight: 500;
    line-height: 1.4;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

header {
  display: flex;
  align-items: center;       /* vertikal zentrieren */
  justify-content: center;   /* horizontal zentrieren */
  gap: 10px;                 /* optional, Abstand zwischen Logo und Name */
  padding: 18px 0;
}
header .header-link{
  display: flex;
  align-items: center;       /* vertikal zentrieren */
  justify-content: center;   /* horizontal zentrieren */
  gap: 10px;                 /* optional, Abstand zwischen Logo und Name */
  padding: 18px 0;
}

  header .logo {
    width: 65px;
    height: 65px;
    margin-right: -10px;
  }

  header .band-name {
    font-size: 25px;
    font-weight: 700;
  }

  header .band-genre {
    font-size: 12px;
    margin-left: 10px;
    color: #bbb;
    font-weight: 400;
  }

  .hero {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 34px;
    
  }

  .hero img {
    width: 100%;
    aspect-ratio: 1200 / 670;
    object-fit: cover;
    border-radius: 12px;
    background: #444;

    /* äußerer Schatten */
    box-shadow: 0 0 10px rgba(0,0,0,0.2),
                /* innerer Schatten */
                inset 0 0 20px rgba(0,0,0,0.5);
}
 .hero video {
    width: 100%;
    aspect-ratio: 1200 / 670;
    object-fit: cover;
    border-radius: 12px;
    background: #444;

    /* äußerer Schatten */
    box-shadow: 0 0 10px rgba(0,0,0,0.2),
                /* innerer Schatten */
                inset 0 0 20px rgba(0,0,0,0.5);
}
.hero1 {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 12px;        /* runde Ecken */
  overflow: hidden;           /* sorgt dafür, dass das Video abgeschnitten wird */
  box-shadow: 0 0 10px rgba(0,0,0,0.2),
              inset 0 0 20px rgba(0,0,0,0.5);
  background: #444;
  aspect-ratio: 1200 / 670;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero1 video {
  width: 100%;
  height: auto;
  display: block;
}

.mute-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  color: #fff;
  border: none;
  border-radius: 10px;
  width: 35px;
  height: 35px;
  font-size: 18px;
  cursor: pointer;
}
  

 .hero-text {
    position: absolute;
    left: 30px;
    bottom: 38px;
    max-width: 900px;
    color: white;
    text-shadow:
        2px 2px 6px rgba(0, 0, 0, 0.8),
       
        6px 6px 50px rgba(0, 0, 0, 0.4);
}

  .hero-text h1 {
    font-weight: 900;
    
    margin: 0;
    letter-spacing: -0.7px;
    max-width: 50vw;
    font-size: auto;
  }
    

  .hero-text p {
    font-size: 13px;
    margin: 8px 0 0 0;
    color: #ddd;
    max-width: 680px;
     text-shadow:
        2px 2px 6px rgba(0, 0, 0, 0.8),
        4px 4px 12px rgba(0, 0, 0, 0.6),
        6px 6px 50px rgba(0, 0, 0, 0.4);
  }

  .hero-caption {
    position: absolute;
    top: 28px;
    right: 38px;
    font-size: 13px;
    color: #ddd;
    
  }

  /* Social Buttons */
.social-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* passt sich an */
  gap: 14px;
  margin: 10px 0 38px 0;
  width: 100%;             /* nie breiter als der Bildschirm */
  box-sizing: border-box;  /* inkl. padding in Gesamtbreite */
  
}

.social-buttons a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 6px;
  text-align: left;
  min-width: 0; /* verhindert, dass flex-Kinder überlaufen */
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius:12px;padding:14px;border:1px solid rgba(255,255,255,0.03);
  box-shadow:0 0px 10px rgba(0,0,0,0.2);
  transition:transform .22s ease,background .12s ease;
}
.social-buttons a:hover{
    transform:translateY(-3px);
  }

.social-buttons img {
  width: 25px;
  height: auto;
  flex-shrink: 0; /* Icon bleibt fix */
}

  h2.section-title {
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 6px;
  }

  h3.sub-title {
    color: #777;
    font-weight: 600;
    font-size: 10px;
    margin: 0 0 12px 0;
  }

  /* Releases - Horizontal Scroll */
  .releases {
    display: flex;
    gap: 22px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    
  }
  .releases::-webkit-scrollbar {
    height: 6px;
  }
  .releases::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
  }

  .release-card {
    flex: 0 0 180px; /* feste Breite pro Karte */
    background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 6px;
    text-align: center;
    max-width: 40vw;
    border-radius:12px;padding:4px;border:1px solid rgba(255,255,255,0.03);
    box-shadow:0 0px 10px rgba(0,0,0,0.2);
    transition:transform .22s ease,background .12s ease;
  }
  .release-card:hover{
    transform:translateY(-3px);
  }

  .release-card img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 6px;
    object-fit: cover;
  }

  .release-card p.title {
    font-weight: 700;
    font-size: 16px;
    margin: 8px 0 0 0;
  }

  .release-card p.text {
    font-size: 11px;
    color: #aaa;
    margin: 2px 0 0 0;
    padding-bottom: 10px;
  }

  /* Rückblick - Horizontal Scroll */
  .rueckblick {
    display: flex;
    gap: 14px;
    margin-bottom: 38px;
    overflow-x: auto;
    padding-bottom: 0px;
  }
 
  .rueckblick::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
  }

.rueckblick-item {
  flex: 0 0 200px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 12px; /* ruhig etwas größer, damit’s sichtbar ist */
  overflow: hidden; /* verhindert das „Abschneiden“ */
  background-color: #555;
  box-shadow: 0 0px 10px rgba(0,0,0,0.2);
  transition: transform .22s ease, background .12s ease;
}

.rueckblick-item:hover {
  transform: translateY(-3px);
  border-radius: 12px; /* neu hinzugefügt, hält Form beim Hover */
  overflow: hidden;    /* sicherstellen, dass das Bild nicht „ausläuft“ */
}

.rueckblick-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  .rueckblick-item .caption {
    position: absolute;
    bottom: 6px;
    left: 10px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
  }

  /* Tour Table */
  table.tour-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 38px;
  }

  table.tour-table td {
    padding: 14px;
    vertical-align: middle;
  }

  table.tour-table tr {
    border-bottom: 1.5px solid #222;
  }

  table.tour-table td.date {
    width: 15%;
    font-size: 13px;
  }

  table.tour-table td.event {
    font-weight: 600;
    font-size: 14px;
    color: white;
    width: 65%;
  }

  table.tour-table td.event span {
    font-weight: 400;
    font-size: 11px;
    color: #555;
    padding-left: 6px;
  }

  table.tour-table td.tickets {
    text-align: right;
    width: 20%;
  }

  button.tickets-btn {
    background-color: white;
    color: black;
    border-radius: 18px;
    font-weight: 800;
    font-size: 12px;
    border: none;
    padding: 6px 18px;
    cursor: pointer;
  }

  .about-text {
    max-width: 1000px;
    font-size: 12px;
    color: #bbb;
    margin-bottom: 16px;
  }

 .members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0 50px 0;
}

.member-card {
  display: flex;
  align-items: center;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 8px;
  padding: 10px 14px;
  gap: 12px;
  border-radius:12px;padding:10px;border:1px solid rgba(255,255,255,0.03);
  box-shadow:0 0px 10px rgba(0,0,0,0.2);
}

.member-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.member-info {
  display: flex;
  flex-direction: column;
}

.member-info .name {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.member-info .role {
  font-size: 12px;
  margin: 2px 0 0 0;
  color: #aaa;
}

  .releases, .rueckblick {
  display: flex;
  gap: 22px; /* bzw 14px */
  overflow-x: auto;
  padding-bottom: 8px;
}
 .reviews-grid{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px;margin-bottom:0px;
  }
  .review-card{
    background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius:12px;padding:14px;border:1px solid rgba(255,255,255,0.03);
    min-height:90px;display:flex;flex-direction:column;gap:8px;
    box-shadow:0 0px 10px rgba(0,0,0,0.2);
  }
  .review-body{flex:1;color:var(--muted);font-size:13px;line-height:1.4}
  .review-meta{display:flex;align-items:center;gap:8px;font-size:13px;color:#dfe6e9}
  .meta-name{font-weight:700}
  .rating{display:inline-flex;gap:4px;align-items:center;color:#ff7a59;font-weight:700;font-size:13px}
  .contact {
  text-align: center;
  margin: 15px 0 40px;
  padding: 20px;
  
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 10px;
  border-radius:12px;padding:14px;border:1px solid rgba(255,255,255,0.03);
  box-shadow:0 0px 10px rgba(0,0,0,0.2);
}

.contact-text {
  font-size: 10px;
  color: #aaa;
  margin-bottom: 14px;
}

.contact-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-bottom: 20px;
}

.contact-btn:hover {
  background: #ddd;
}
.gallery {
  column-count: 3;      /* immer 3 Spalten */
  column-gap: 14px;  
  margin-bottom: 20px;   /* Abstand zwischen den Spalten */
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 14px;  /* Abstand nach unten, bevor das nächste Bild kommt */
  border-radius: 10px;
  box-shadow: 0 0px 10px rgba(0,0,0,0.2);
}
.gallery video {
  width: 100%;
  display: block;
  margin-bottom: 14px;  /* Abstand nach unten, bevor das nächste Bild kommt */
  border-radius: 10px;
  box-shadow: 0 0px 10px rgba(0,0,0,0.2);
}

@media (max-width: 1000px) {
    .social-buttons a {
      font-size: 1.2vw;
      
    }
    
  }
  /* Responsive Tweaks */
  @media (max-width: 700px) {
    .social-buttons {
      grid-template-columns: repeat(2, 1fr);
      
    }
    .social-buttons a {
      font-size: 2vw;
      
    }
    .gallery {
  column-count: 2;      /* immer 3 Spalten */
    /* Abstand zwischen den Spalten */
}
.hero-text{
  left:20px;
  bottom:28px
}
    
  }
  @media (max-width: 400px) {
    .hero-text h1 {

      font-size: 7vw
    }
    
}
    
  