:root {
  --accent: #e63946;
  --bg: #000;
  --bg2: #0d0d0d;
  --text: #eee;
  --muted: #aaa;
}

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

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, var(--bg));
  color: var(--text);
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.2px;
}

html {
  scroll-behavior: smooth;
}


header h1 {
  color: #000000;       /* Macht den Text absolut tiefschwarz */
  margin: 0;            /* Löscht alle Abstände außen */
  padding: 0;           /* Löscht alle Abstände innen */
  font-size: 0px;       /* Macht die Schriftgröße unsichtbar, damit das Logo nicht verrutscht */
  line-height: 0;       /* Verhindert, dass der Text Platz nach unten blockiert */
}



/* =========================
   MAIN
========================= */

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

/* =========================
   SECTIONS
========================= */

section {
  margin: 70px 0;
}

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

header {
  padding: 60px 20px 30px;
  background: var(--bg2);
  border-bottom: 1px solid rgba(230, 57, 70, 0.5);
}

header img {
  max-width: 300px;
  height: auto;
  margin-bottom: 10px;
}

header h2 {
  color: var(--muted);
  font-weight: 300;
}

/* =========================
   TITLES
========================= */

section h2 {
  color: var(--accent);
  margin-bottom: 25px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(230, 57, 70, 0.5);
}

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

nav {
  margin-top: 25px;
}

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

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

/* =========================
   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: 8px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(230, 57, 70, 0.15);
}

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

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

/* OVERLAY */
.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: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 42px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.95);
}

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

.overlay .label {
  color: var(--accent);
  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: 0 auto;
}

/* MUSIC */
.platforms img {
  height: 40px;
  width: auto;
  transition: 0.25s ease;
  opacity: 0.95;
}

.platforms img:hover {
  transform: scale(1.07);
  opacity: 1;
  filter: brightness(1.1);
}

/* SOCIAL */
.social {
  max-width: 700px;
  gap: 20px;
  padding: 10px 0;
}

.social img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  filter: grayscale(10%);
  transition: 0.25s ease;
}

.social img:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
  filter: grayscale(0%) brightness(1.1);
  box-shadow: 0 0 14px rgba(230, 57, 70, 0.3);
}

/* =========================
   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: 0 auto;
}

.gallery img {
  width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  transition: 0.25s;
  filter: contrast(1.05) saturate(1.05);
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.35);
}

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

footer {
  padding: 40px;
  background: var(--bg);
  color: #666;
  margin-top: 100px;
  opacity: 0.9;
  font-size: 14px;
}

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

/* =========================
   ACCESSIBILITY
========================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

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

#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;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

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

/* =========================
   MEDIA FORM
========================= */

.media-container {
  color: #ffffff;
  font-family: Arial, sans-serif;
  max-width: 480px;
  margin: 40px auto;
  padding: 30px;
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.media-warning {
  color: #ff4d4d;
  font-weight: 600;
  font-size: 1.09em;
  margin-bottom: 25px;
  border-left: 3px solid #ff4d4d;
  padding-left: 12px;
}

.media-success {
  color: #2ecc71;
  font-weight: 600;
  margin-bottom: 25px;
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
}

.media-form label {
  display: block;
  font-weight: 500;
  font-size: 0.9em;
  color: #aaaaaa;
  margin-top: 18px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.media-form input[type="text"],
.media-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  background-color: #161616;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  color: #ffffff;
}

.media-form button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 14px 20px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 28px;
  width: 100%;
}