:root {
  --accent: #d6dbe0;
  --bg: #0b0d10;
  --panel: rgba(15, 18, 22, 0.78);
  --text: #e9edf2;
  --muted: #aeb6bf;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 30px;
}

/* GLOBAL IMAGE FIX */
img {
  display: block;
  max-width: 100%;
  height: auto;
}


/* =========================
   RESET / BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  text-align: center;

  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.03), transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.02), transparent 50%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 7px
    );
}

/* =========================
   LAYOUT
========================= */

main {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

section {
  margin: 70px 0;
}

/* =========================
   HEADER
========================= */

header {
  padding: 70px 20px 40px;
  background: var(--panel);
  border-bottom: 1px solid rgba(214, 219, 224, 0.2);
}

.site-title {
  margin: 0;
}

.site-title img {
  max-width: 580px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================
   HEADINGS
========================= */

/* 1. Schriftart für alle Elemente festlegen */
h1, h2, h3, p, label {
  font-family: Verdana, sans-serif;
}

/* 2. Allgemeine Styles für alle Überschriften */
h1, h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* KORRIGIERT: Zwingt den Text in eine Zeile und macht ihn kompakter */
header h2 {
  font-size: 1.0rem;        /* Etwas kleiner, damit es in eine Zeile passt */
  letter-spacing: 0.5px;    /* Reduziert den Buchstabenabstand deutlich */
  white-space: nowrap;      /* NEU: Zwingt den Text, absolut in EINER Zeile zu bleiben */
  text-align: center;       /* Zentriert die Zeile */
  margin: 15px 0;           /* Normaler Abstand nach oben und unten */
}

/* 3. Styles für die Überschriften in den Sektionen */
section h2 {
  color: var(--accent);
  border-bottom: 1px solid rgba(214, 219, 224, 0.25);
  padding-bottom: 6px;
  margin-bottom: 25px;
}


/* =========================
   NAV
========================= */

nav {
  margin-top: 25px;
}

nav a {
  display: inline-block;
  margin: 5px;
  padding: 10px 18px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.35);
  transition: 0.25s;
}

nav a:hover {
  background: var(--accent);
  color: var(--bg);
}

/* =========================
   HERO
========================= */

#hero {
  margin: 0;
}

#hero img {
  width: 100%;
  height: min(83vh, 700px);
  object-fit: cover;
  object-position: top; /* Das bewirkt das Beschneiden NUR am unteren Rand */
  display: block;
}

/* =========================
   VIDEO TILE
========================= */

.video-tile {
  position: relative;
  display: block;
  max-width: 1000px;
  margin: 40px auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 219, 224, 0.2);
  text-decoration: none;
}

.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: contrast(1.05) brightness(0.9);
}

.video-tile:hover img {
  transform: scale(1.03);
}

/* =========================
   OVERLAY (YOUTUBE CTA – UNCHANGED FUNCTION)
========================= */

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: 0.3s ease;
}

.video-tile:hover .overlay {
  opacity: 1;
}

.overlay::before {
  content: "";
  width: 90px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.9);
  border: 2px solid #ff0000;
  position: absolute;
}

.overlay::after {
  content: "▶";
  color: #fff;
  font-size: 30px;
  position: absolute;
}

.overlay .label {
  color: var(--text);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  top: 50px;
}


/* =========================
   MUSIC + SOCIAL
========================= */

.platforms,
.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.platforms img,
.social img {
  width: auto;
  height: 40px;
  max-width: 100%;
  transition: 0.25s ease;
}

.platforms img:hover,
.social img:hover {
  transform: scale(1.06);
}

/* =========================
   ABOUT
========================= */

#about {
  max-width: 900px;
  margin: 0 auto;
}

#about img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

/* =========================
   GALLERY
========================= */

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.gallery img {
  width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: 0.25s;
  cursor: pointer;
}

/* Gallery hover effect - steel grey glow */
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 14px rgba(214, 219, 224, 0.35);
}

/* =========================
   MEDIA AREA
========================= */

.media-container {
  max-width: 480px;
  margin: 40px auto;
  padding: 30px;
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 219, 224, 0.15);
}

/* WARNING (UNCHANGED SIGNAL STYLE) */
.media-warning {
  color: #ff3b3b;
  font-weight: 800;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 60, 60, 0.6);
  border-left: 5px solid #ff2a2a;
  padding: 14px;
  margin-bottom: 25px;
  border-radius: 8px;
  text-transform: uppercase;
}

/* FORM */
.media-form label {
  display: block;
  margin-top: 18px;
  font-size: 0.9em;
  color: var(--muted);
  text-transform: uppercase;
}

.media-form input {
  width: 100%;
  padding: 12px;
  background: #0f1216;
  border: 1px solid #2a2f36;
  color: var(--text);
  border-radius: var(--radius-sm);
}

/* BUTTON (rounded fixed) */
.media-form button {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: 0.25s;
}

.media-form button:hover {
  opacity: 0.9;
}

/* SUCCESS (Erfolgsmeldung im neuen, modernen Stil) */
.media-success {
  color: #2ecc71; /* Schönes, klares Grün für den Text */
  font-weight: 700;
  text-align: center;
  background: rgba(46, 204, 113, 0.08); /* Ganz dezenter grüner Hintergrund */
  border: 1px solid rgba(46, 204, 113, 0.4);   /* Feiner grüner Rahmen rundherum */
  border-left: 5px solid #2ecc71;               /* Dickerer grüner Balken links, passend zur Warnung */
  padding: 14px;
  margin-bottom: 25px;
  border-radius: var(--radius-sm);              /* Nutzt die Eckenrundung deiner Website */
  text-transform: uppercase;                    /* Macht den Text wichtig und groß */
}




/* =========================
   FOOTER
========================= */

footer {
  padding: 40px;
  background: #0b0d10;
  color: var(--muted);
  font-size: 14px;
  margin-top: 100px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* =========================
   LIGHTBOX
========================= */

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

#close-btn,
#prev-btn,
#next-btn {
  position: absolute;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

#close-btn { top: 10px; right: 10px; }
#prev-btn { left: 20px; top: 50%; transform: translateY(-50%); }
#next-btn { right: 20px; top: 50%; transform: translateY(-50%); }




/* =========================
   MOBILE
========================= */
/* =========================
   MOBILE (OPTIMIERT FÜR DIE NEUE BAND)
========================= */

@media (max-width: 768px) {

  main {
    padding: 0 15px;
  }

  header {
    padding: 40px 15px 20px;
  }

  /* KORRIGIERT: Das Logo passt sich jetzt dynamisch der Handbbreite an und wird nicht auf 220px gequetscht */
  .site-title img,
  header img {
    max-width: 100%;
    height: auto;
  }

  /* KORRIGIERT: Macht die Schrift auf dem Handy kleiner (0.85rem), damit sie garantiert in EINER Zeile bleibt */
  header h2 {
    font-size: 0.85rem;
    white-space: normal; /* NEU: Hebt den Zwang auf und stoppt das Rutschen! */
  }

  section {
    margin: 50px 0;
  }

  section h2 {
    font-size: 1.5rem;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  #hero img {
    height: 50vh;
  }

  .gallery {
    gap: 12px;
  }

  .gallery img {
    width: calc(50% - 6px);
  }

  .platforms img,
  .social img {
    height: 34px;
  }

  .media-container {
    margin: 20px;
    padding: 20px;
  }
}

@media (hover: none) {

  .overlay {
    opacity: 1;
    background: rgba(0,0,0,.25);
  }

}
