/* ---------------------------------------------------
   GLOBAL SETTINGS
----------------------------------------------------- */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/oswald-v56-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/oswald-v56-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/oswald-v56-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/oswald-v56-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/roboto-v51-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-v51-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/roboto-v51-latin-500.woff2') format('woff2');
}



:root {
  --bg-dark: #0b0b0b;
  --bg-light: #1a1a1a;
  --accent: #5bc0de; /* Stahlblau */
  --text-main: #e6e6e6;
  --text-muted: #b0b0b0;
  --font-head: "Oswald", sans-serif;
  --font-body: "Roboto", sans-serif;
  --max-width: 1200px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #0a0a0a, #000000);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: #ffffff;
}


/* ---------------------------------------------------
   NAVIGATION
----------------------------------------------------- */

.main-nav {
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(3px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 25px;
  border-bottom: 1px solid #222;
}

/* ✔ Logo jetzt groß */
.main-nav .logo img {
  height: 110px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  padding: 0;
  margin: 0;
}
.nav-links li a {
  font-family: var(--font-head);
  font-size: 1.2rem;               /* ursprünglich 0.95 */
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-links li a:hover {
  color: var(--accent);
}

.shop-link {
  color: var(--accent);
  font-weight: 600;
}
.shop-link:hover {
  color: #fff;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-left: 20px;
}
.social-icons img {
  width: 24px;          /* oder 30px, wenn du sie größer willst */
  opacity: 0.9;
  filter: invert;         /* WICHTIG: invert raus */
  transition: transform 0.3s, opacity 0.3s;
}

.social-icons img:hover {
  opacity: 1;
  transform: scale(1.15);
}


/* Language switch */
.lang-switch {
  margin-left: 20px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.lang-switch a {
  color: var(--text-muted);
}
.lang-switch a:hover {
  color: #fff;
}
.lang-switch .active-lang {
  color: var(--accent);
}



/* ---------------------------------------------------
   HERO SECTION
----------------------------------------------------- */

.hero {
  margin-top: 120px;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
}

/* ✔ Shop-Button entfernt */
.hero-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 45px;

  /* ✔ weiche, dezente Abdunklung */
  background: radial-gradient(
      circle,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.75) 70%
  );

  border: none;
  text-align: center;

  /* ✔ feinere Lesbarkeit */
  text-shadow: 0 4px 18px rgba(0,0,0,1);
}


.hero-overlay h1 {
  font-family: var(--font-head);
  font-size: 3rem;
  letter-spacing: 3px;
  color: #fff;
}

.hero-overlay p {
  font-size: 1.2rem;
  color: #ddd;
}



/* ---------------------------------------------------
   SECTION GENERAL
----------------------------------------------------- */

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 25px;
}

.section h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: var(--accent);
}


/* ---------------------------------------------------
   NEWS CARD
----------------------------------------------------- */

.news-card {
  display: flex;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.4);
  border: 1px solid #222;
  padding: 20px;
  gap: 25px;
}

.news-cover {
  width: 280px;
  border: 2px solid #333;
  filter: none;
}

.news-content {
  flex: 1;
  min-width: 260px;
}

.news-content h3 {
  font-family: var(--font-head);
  color: var(--accent);
  margin-bottom: 10px;
}

.btn-secondary {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #333;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: var(--accent);
  color: #000;
}


/* ---------------------------------------------------
   VIDEO GRID (✔ Videos repariert!)
----------------------------------------------------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.video-box iframe {
  width: 100%;
  height: 260px;
  border: 2px solid #222;
}

.video-title {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-head);
  color: var(--text-muted);
}


/* ---------------------------------------------------
   STREAMING ICONS
----------------------------------------------------- */

.stream-links {
  margin-top: 40px;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.stream-links img {
  width: 40px;
  filter: none;        /* invert raus */
  opacity: 0.9;
  transition: 0.3s;
}

.stream-links img:hover {
  opacity: 1;
  transform: scale(1.1);
}



/* ---------------------------------------------------
   BIO – Toggle
----------------------------------------------------- */

.bio-short {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bio-full {
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
}

.hidden {
  display: none;
}

#bio-toggle {
  display: block;
  margin: 0 auto;
}


/* ---------------------------------------------------
   MEMBERS – 2‑SPALTIG FIXIERT (✔ DEIN WUNSCH)
----------------------------------------------------- */

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px;
}

.member-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 3px solid #333;
  filter: grayscale(100%) contrast(120%);
  transition: 0.3s;
}
.member-box img:hover {
  transform: scale(1.03);
}

.member-box h3 {
  font-family: var(--font-head);
  margin-top: 10px;
  color: var(--accent);
}

.member-box p {
  color: var(--text-muted);
}


/* ---------------------------------------------------
   PROMO BREAK – Vollständiges Bild (✔ Fix)
----------------------------------------------------- */

.promo-break img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}


/* ---------------------------------------------------
   LIVE-GALERIE (✔ repariert!)
----------------------------------------------------- */

.gigs {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  border-collapse: collapse;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-main);
}

.gigs th {
  background: rgba(255,255,255,0.05);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 10px;
  border-bottom: 2px solid #333;
}

.gigs td {
  padding: 10px;
  border-bottom: 1px solid #333;
}

.gigs tr:hover td {
  background: rgba(255,255,255,0.03);
}


.live-gallery img {
  height: 260px;
  aspect-ratio: 1 / 1;  /* quadratisch */
  object-fit: cover;
}


.live-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}




.live-gallery img:hover {
  transform: scale(1.03);
}


/* ---------------------------------------------------
   DISCOGRAPHY GRID (✔ repariert!)
----------------------------------------------------- */

.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.release img {
  width: 100%;
  border: 2px solid #333;
  filter: none !important;  /* Cover NICHT filtern */
}


/* ---------------------------------------------------
   FOOTER
----------------------------------------------------- */

footer {
  background: #000;
  padding: 25px;
  text-align: center;
  border-top: 1px solid #222;
  font-size: 0.9rem;
}

/* ---------------------------------------------------
   LIGHTBOX
----------------------------------------------------- */

.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid #444;
}


/* ---------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 900px) {
  .hero-overlay h1 {
    font-size: 2.4rem;
  }

  .member-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .hero-image {
    height: 55vh;
  }

  .video-box iframe {
    height: 200px;
  }

  .member-box img {
    height: 190px;
  }
}

@media (max-width: 900px) {

  .main-nav {
    justify-content: center;
    padding: 6px 12px;
  }

  .main-nav .logo img {
    height: 70px;
  }

  .nav-links li a {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .social-icons img {
    width: 22px;
  }
}

@media (max-width: 600px) {

  .main-nav {
    flex-direction: column;
  }

  .main-nav .logo img {
    height: 50px;
  }

  .nav-links {
    gap: 6px 10px;
  }

  .nav-links li a {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }

  .social-icons img {
    width: 18px;
  }
  
  
  .hero {
    margin-top: 150px;
  }

  .hero-image {
    height: auto;
    object-fit: contain;
  }
}