/* ================================
   ?? VEDELSRADIO – Child Theme Styles
   ================================ */

:root {
  --vr-red: #E10600;
  --vr-yellow: #FFCC00;
  --vr-text: #0E0E0E;
  --vr-bg: #ffffff;
  --vr-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', system-ui, sans-serif;
}

/* === Grundlayout === */
body {
  color: var(--vr-text);
  background-color: var(--vr-bg);
  padding-bottom: 74px;
  margin: 0;
}

/* ===============================
   ?? Jubiläumsbanner (ruhig, ohne Schrauben)
   =============================== */
.header-panorama {
  position: relative;
  width: 100%;
  height: 30vh;
  background: url('/wp-content/themes/veedelsradio-child-v2/assets/images/20jahre-banner.jpg')
              center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vr-badge {
  display: block;
  width: clamp(300px, 60vw, 800px);
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

/* Mobile Anpassungen */
@media (max-width: 900px) {
  .header-panorama { height: 40vh; }
  .vr-badge { width: clamp(260px, 70vw, 600px); }
}

@media (max-width: 600px) {
  .header-panorama { height: 36vh; }
  .vr-badge { width: clamp(220px, 80vw, 480px); }
}

/* ===============================
   ?? Hero-Bereich
   =============================== */
.vr-hero {
  padding: 40px 16px 34px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.vr-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 14px;
}

.vr-cta {
  display: inline-block;
  background: var(--vr-red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
}

.vr-cta:hover {
  background: #c10500;
  transform: scale(1.05);
}

/* ===============================
   ?? Player Bar (unten fixiert)
   =============================== */
#vr-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid var(--vr-red);
  box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 12px;
  z-index: 9999;
}

#vr-play-btn {
  border: none;
  background: var(--vr-red);
  color: #fff;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s ease;
}

#vr-play-btn:hover {
  background: #c10500;
  transform: scale(1.05);
}

#vr-status-text { font-size: 1rem; color: #000; }

#vr-song-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

#vr-song-info img#vr-cover {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  border: 2px solid var(--vr-red);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  #vr-song-info img#vr-cover:hover {
    transform: scale(1.25);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
  }
}

@media (hover: none) and (pointer: coarse) {
  #vr-song-info img#vr-cover {
    transform: none !important;
    box-shadow: none !important;
    cursor: default;
  }
}

/* ===============================
   ?? Team & Shows Layout
   =============================== */
.section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 16px;
  text-align: center;
}

.section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--vr-red);
  margin-bottom: 28px;
}

/* Karten-Grid */
.section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  justify-content: center;
  gap: 26px;
  align-items: stretch;
}

/* Karten */
.section .team-member {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--vr-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 520px;
  padding: 14px 20px;
}

.section .team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.section .team-member img {
  width: 100%;
  max-width: 360px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--vr-red);
  margin: 0 auto 10px auto;
}

.section .team-member h3 {
  font-size: 1.2rem;
  margin: 8px 0 4px 0;
}

.section .team-member p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 10px 0;
}

.section .team-member a.vr-pill {
  align-self: center;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .section .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .section .team-member img {
    height: 160px;
  }
}

/* ===============================
   ?? Sticky Header
   =============================== */
body.home #site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  z-index: 9999;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

body.home.scrolled #site-header {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

body.home #site-header .nav-menu li a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  transition: color 0.3s ease;
}

body.home #site-header .nav-menu li a:hover {
  color: #ffcc00;
}

body:not(.home) #site-header {
  background: #fff;
  border-bottom: 3px solid #e10600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body:not(.home) #site-header .nav-menu li a {
  color: #222;
  font-weight: 600;
}

body:not(.home) #site-header .nav-menu li a:hover {
  color: #e10600;
}

#content { margin-top: 80px; }

@media (max-width: 768px) {
  #site-header { padding: 10px 0; }
  .nav-menu li a { font-size: 0.9rem; }
}
/* ===============================
   ?? Weißer Streifen über Banner entfernen
   =============================== */

/* Entfernt Standardabstände von Blocksy oder Body */
body.home {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Header bündig mit oberem Fensterrand */
body.home #site-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Hauptinhalt direkt unter Banner starten */
body.home #content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Für Blocksy-interne Container, die gerne Luft lassen */
body.home .ct-container,
body.home .ct-main,
body.home main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* ===============================
   ?? Jubiläums-Badge doppelt so groß
   =============================== */

/* Badge im Bannerbereich */
.header-panorama .badge-wrapper img.vr-badge {
  width: clamp(600px, 80vw, 1400px) !important; /* doppelt so groß */
  height: auto !important;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
  transition: none; /* kein Hover-Sprung */
  transform: none !important;
}

/* Position bleibt schön mittig */
.header-panorama .badge-wrapper {
  position: absolute;
  top: 52%;
  left: 50%;
}

/* ===============================
   ?? Jubiläums-Badge – Responsiv & Ruhig (mit größerem Handy-Layout)
   =============================== */

.header-panorama .badge-wrapper {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-block;
}

/* Standardgröße – für große Bildschirme */
.header-panorama .badge-wrapper img.vr-badge {
  display: block;
  width: clamp(320px, 60vw, 900px); /* min 320px, max 900px */
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.55));
  transition: none;
  transform: none;
}

/* Tablets – etwas größer, da mittlere Displays */
@media (max-width: 768px) {
  .header-panorama .badge-wrapper img.vr-badge {
    width: clamp(300px, 90vw, 800px);
  }
}

/* Smartphones – doppelte Größe im Verhältnis */
@media (max-width: 480px) {
  .header-panorama .badge-wrapper img.vr-badge {
    width: clamp(360px, 120vw, 900px); /* deutlich größer */
  }
}

/* ===============================
   ?? Zentrierung aller Hauptbereiche
   =============================== */

.section {
  max-width: 1200px;           /* Begrenzte Breite */
  margin: 0 auto 80px auto;    /* Oben/unten Abstand, links/rechts automatisch = zentriert */
  padding: 0 24px;             /* Etwas mehr Innenabstand */
  text-align: center;
}

/* Überschriften mittig */
.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--vr-red, #E10600);
}

/* Team-/Shows-Grid perfekt mittig */
.section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;     /* Zentriert den Grid-Inhalt horizontal */
  align-items: start;
  gap: 30px;
  max-width: 1100px;           /* Begrenzte Breite für schöne Balance */
  margin: 0 auto;
  padding: 0 16px;
}

/* Karten (Sendungen, Team) */
.section .team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  padding: 16px;
  max-width: 340px;
  margin: 0 auto;              /* Zentriert die Karte innerhalb der Zelle */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section .team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Bilder zentrieren */
.section .team-member img {
  display: block;
  margin: 0 auto 10px auto;
  width: 100%;
  max-width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--vr-red, #E10600);
}
body {
  background-color: #E0E0E0; /* sehr helles Grau statt reinem Weiß */
  color: #333333;            /* dunkelgrau statt hartem Schwarz */
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif; /* moderne Sans-Serif */
}
/* Künstler fett + schwarz */
#vr-artist {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 1.15rem;
}

/* Titel rot (normal oder fett? — hier erstmal normal gelassen) */
#vr-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #ff0000;
  font-size: 1rem;
}

/* Status fett */
#vr-status-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 1.5rem;
  text-align: center;
}

/* Play/Pause Schrift fett */
#vr-play-btn {
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.header-panorama .badge-wrapper img.vr-badge {
  width: clamp(500px, 80vw, 1300px); /* deutlich größer */
  height: auto;
}

@media (max-width: 600px) {
  .header-panorama .badge-wrapper img.vr-badge {
    width: clamp(380px, 140vw, 900px);  /* deutlich größer */
  }
}




