
/* ===================================================== */
/* RESET / BASE CONFIG                                   */
/* ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050505;
  color: #eee;
  font-family: Arial, Helvetica, sans-serif;
}


/* ===================================================== */
/* HEADER / NAVIGATION                                   */
/* ===================================================== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem; 
}

.header nav a {
  margin-left: 24px;
  color: #aaa;
  text-decoration: none;
  font-size: 1.8rem;
}


/* ===================================================== */
/* HERO SECTION                                          */
/* ===================================================== */

.hero {
  margin-top: 120px;
  display: flex;
   
  justify-content: center;
  padding: 80px 32px 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  width: 100%;
  max-width: 1200px; /* 🔥 HIER DIE MAXIMALE BREITE */
}


.hero-content > img:first-child {
  max-width: 1250px; /* NUR bandpic.png */
  width: 100%;
}

/* ===== HERO LOGO IMAGE ===== */

.hero-logo {
  max-width: 1250px;
  width: 100%;
  margin-top: -80px;
  margin-bottom: 75px;
  opacity: 85%



}


/* ===== GLASS TITLE ===== */

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;

  color: rgba(255, 255, 255, 0.65);
  text-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 24px rgba(44,255,106,0.25);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 14px 28px;
  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,255,255,0.18);
}


/* ===================================================== */
/* GENERIC SECTIONS                                      */
/* ===================================================== */

.section {
  width: 100%;
  padding: 80px 0;
}

.section.dark {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
/* ===== SECTION WIDTH VARIANTS ===== */

.section-inner.wide {
  max-width: 1400px;
}

.section-inner.full {
  max-width: 1600px;
}

h2 {
  margin-bottom: 32px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 3px;
}

#about p {
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  line-height: 1.75;
  max-width: 760px;
}


/* ===================================================== */
/* MUSIC PLAYER (CLEAN LAYOUT)                            */
/* ===================================================== */

.player-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.player {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;

  max-width: 1300px;
  width: 100%;

  padding: 24px 28px;
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(44,255,106,0.18),
    rgba(0,0,0,0.75)
  );

  backdrop-filter: blur(16px);
}

/* COVER */
.player-cover {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.25);
}

/* CONTENT */
.player-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.track-meta strong {
  font-size: 1.1rem;
}

.track-meta span {
  font-size: 0.85rem;
  color: #aaa;
}

/* ROW */
.player-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
}

/* BUTTONS */
.controls-transport button {
  font-size: 1.4rem;
  padding: 4px;
  position: relative;
  top: -3px;
}

.controls-volume {
  display: flex;
  align-items: center;
  gap: 8px;
}

#time {
  font-size: 0.85rem;
  color: #ccc;
}


/* ===================================================== */
/* PLAYER CONTROLS / SLIDERS                              */
/* ===================================================== */

button {
  background: none;
  border: none;
  color: #eee;
  cursor: pointer;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  margin-top: -4px;
}
/* ===================================================== */
/* PLAYLIST                                              */
/* ===================================================== */

.playlist {
  margin-top: 24px;
  padding: 0 36px;
}

.playlist-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.playlist-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;

  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.playlist-list li:hover {
  color: #fff;
}

.playlist-list li.active {
  font-weight: 700;
  color: #fff;
}

.playlist-time {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-left: 24px;
  white-space: nowrap;
}


/* ===================================================== */
/* MEMBERS SLIDER                                        */
/* ===================================================== */

.member-slider {
  position: relative;
  overflow: hidden;
  padding: 0 96px;
}

.member-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.member-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

/* ===== MEMBER CARD (SCALE CONTROL) ===== */

.member-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;

  align-items: flex-start; /* TEXT STARTET OBEN */

  transform: scale(0.9);
  transform-origin: left;
}

}

/* IMAGE */
.member-image {
  width: 220px;
  height: 360px;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.2);
}

/* BADGE */
.badge {
  position: absolute;
  bottom: 12px;
  left: 12px;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 8px;

  font-size: 0.75rem;
}

.badge strong {
  display: block;
  font-size: 0.85rem;
}

.member-text {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}



/* ===================================================== */
/* MEMBERS SLIDER NAVIGATION                              */
/* ===================================================== */

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 5;
}

.slider-nav.left {
  left: 24px;
}

.slider-nav.right {
  right: 24px;
}

.slider-nav:hover {
  background: rgba(44,255,106,0.25);
}


/* ===================================================== */
/* MEDIA GRID                                            */
/* ===================================================== */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.media-grid img {
  width: 100%;
  height: 220px;              /* 🔥 HIER DIE BILDHÖHE */
  object-fit: cover;          /* Zuschneiden statt strecken */
  border-radius: 14px;

  transition: transform 0.3s ease;
}

.media-grid img:hover {
  transform: scale(1.03);
}
/* ===================================================== */
/* CONCERT LIST                                          */
/* ===================================================== */

.concert-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.concert-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;

  padding: 20px 28px;
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(44,255,106,0.12),
    rgba(0,0,0,0.6)
  );

  backdrop-filter: blur(10px);
}

/* DATE */
.concert-date {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.concert-date .day {
  display: block;
  font-size: 2rem;
}

.concert-date .month {
  font-size: 0.85rem;
  color: #aaa;
}

/* INFO */
.concert-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.concert-info strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.concert-info span {
  font-size: 0.9rem;
  color: #ccc;
}

/* ACTION */
.concert-action a {
  padding: 10px 18px;
  border-radius: 20px;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;

  color: #000;
  background: #2cff6a;

  transition: background 0.2s ease;
}

.concert-action a:hover {
  background: #1fd85a;
}


/* ===================================================== */
/* FOOTER                                                */
/* ===================================================== */

.footer {
  padding: 40px;
  text-align: center;
  background: #000;
  color: #666;
}
.footer a {
  color: #666;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

/* ===================================================== */
/* MOBILE VERSION – EIGENE DARSTELLUNG                   */
/* DESKTOP BLEIBT UNVERÄNDERT                             */
/* ===================================================== */

@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */

  body {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-inner {
    padding: 0 16px;
  }

  h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  /* ---------- HEADER ---------- */

  .header {
    height: auto;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
  }

  .header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header nav a {
    font-size: 1rem;
    margin: 6px 12px;
  }

  /* ---------- HERO ---------- */

  .hero {
    margin-top: 120px;
    padding: 32px 16px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content > img:first-child {
    max-width: 100%;
  }

  .hero-logo {
    max-width: 100%;
    margin-top: -40px;
    margin-bottom: 40px;
  }

  /* ---------- MUSIC PLAYER ---------- */

  .player {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .player-cover {
    width: 100%;
    height: auto;
  }

  .player-cover img {
    height: auto;
  }

  .player-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .controls-transport {
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  .controls-volume {
    justify-content: center;
display: none;
  }

  /* ---------- PLAYLIST (MOBILE = LISTE) ---------- */

  .playlist {
    padding: 0;
    margin-top: 32px;
  }

  .playlist-list li {
    padding: 12px 6px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

  .playlist-time {
    font-size: 0.75rem;
  }

/* ===================================================== */
/* MOBILE VERSION – FUNKTIONIERENDER SLIDER             */
/* ===================================================== */

@media (max-width: 768px) {
  
  /* ---------- GLOBAL ---------- */
  body {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-inner {
    padding: 0 16px;
  }

  h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
  }

  /* ---------- MEMBERS SLIDER MOBILE ---------- */
  
  .member-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px; /* Platz für Navigation */
    margin: 0 -16px; /* Kompensiert section-inner padding */
    width: calc(100% + 32px);
  }
  
  .member-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
    gap: 0; /* Kein Gap zwischen Slides */
  }
  
  /* Nur eine Slide sichtbar */
  .member-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  /* ---------- MEMBER CARD MOBILE ---------- */
  
  .member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* ---------- IMAGE CONTAINER ---------- */
  
  .member-image {
    width: 100%;
    height: 280px;
    max-width: 250px;
    position: relative;
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
  }
  
  /* ---------- BADGE ---------- */
  
  .badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .badge strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #2cff6a;
  }
  
  /* ---------- TEXT CONTENT ---------- */
  
  .member-text {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  /* ---------- NAVIGATION MOBILE ---------- */
  
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .slider-nav.left {
    left: 8px;
  }
  
  .slider-nav.right {
    right: 8px;
  }
  
  /* Dots Navigation für Mobile */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
  }
  
  .slider-dot.active {
    background: #2cff6a;
    transform: scale(1.2);
  }
}

/* ===================================================== */
/* SEHR KLEINE DISPLAYS (iPhone SE etc.)                */
/* ===================================================== */

@media (max-width: 480px) {
  .member-slider {
    padding: 0 40px;
  }
  
  .member-image {
    height: 240px;
    max-width: 220px;
  }
  
  .slider-nav {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .slider-nav.left {
    left: 4px;
  }
  
  .slider-nav.right {
    right: 4px;
  }
}

@media (max-width: 375px) {
  .member-image {
    height: 220px;
    max-width: 200px;
  }
  
  .member-text {
    font-size: 0.9rem;
  }
  
  .badge {
    font-size: 0.85rem;
    padding: 8px;
  }
  
  .badge strong {
    font-size: 0.95rem;
  }
}