/* Reset & generelle Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    color: #333;
  }
  
  /* Header initial aus dem sichtbaren Bereich heraus verschieben */
  .header {
    position: fixed;
    /* Wähle hier einen Wert, der hoch genug ist, 
       damit der Header vollständig verborgen ist */
    top: -160px;  
    width: 100%;
    height: 90px; /* Passe die Höhe an deine Bedürfnisse an */
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: top 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  /* .visible-Klasse zeigt den Header an */
  .header.visible {
    top: 0;
  }
  
  /* Header-Logo auf 150x150px beschränken */
  .header .logo img {
    width: 80px;
    height: 80px;
    object-fit: cover; /* oder contain, je nachdem wie das Bild skalieren soll */
  }

  .logo h1 {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  
  .nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav a {
    text-decoration: none;
    color: #333;
  }
  
  /* Hero-Bereich mit Parallax-Effekt */
  .hero {
    position: relative;
    height: 100vh;
    /* Dein zufälliges Hintergrundbild wird via Inline-Style in index.php gesetzt */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* Kein background-attachment: fixed, da du das Parallax via JS steuerst */
    overflow: hidden;
  }
    
  .hero-content {
    position: relative;
    z-index: 1; /* Über dem Overlay liegen, falls du einen Blur/Overlay nutzt */
    display: flex;
    flex-direction: column;
    align-items: center;    /* Zentriert Inhalte horizontal */
    justify-content: center; /* Zentriert Inhalte vertikal, 
                                wenn .hero-content die volle Höhe hat */
    height: 100%; 
    text-align: center;     /* Falls du reinen Text zentrieren möchtest */
    padding: 20px;          /* Abstand innen, damit nichts am Rand klebt */
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; left:0; right:0; bottom:0; */
    /* Leicht hellblauer Farbhauch */
    background: rgba(0, 173, 255, 0.2);
    
    /* Blur-Effekt */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); /* Safari-Unterstützung */
    
    /* Wichtig, damit es nicht vor dem Text liegt */
    z-index: 0;
  }
  

  .hero-logo {
    display: block;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    /* Wenn das Bild nicht quadratisch ist und du eine feste Größe möchtest:
       max-height: 200px; oder object-fit: contain; 
       Je nach Wunsch. */
  }
  
  .hero-content h2 {
    color: #fff;  /* Weiße Schrift */
    font-size: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); 
    /* Schattendicke anpassen nach Geschmack */
    margin: 0;  /* Abstand anpassen, falls nötig */
  }

  /* Inhalte nach dem Hero-Bereich */
  .content-section {
    padding: 60px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
  }
  
  .radio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .radio-station {
    flex: 1 1 300px; /* oder eine feste Breite */
    background: #fff;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  /* --- Willkommen-Section --- */
  .welcome-section {
    position: relative;
    padding: 70px 20px;
    text-align: center;
    color: #ffffff;
    background: #3b3b3b;
  }

  .welcome-section h2 {
    font-size: 4rem;
    font-family: Brush Script MT, cursive; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 700; 
    line-height: 26.4px;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .welcome-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
  }

  /* Container für die 3 Buttons */
  .welcome-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
  }
  
  /* "Fancy" Buttons */
  .fancy-btn {
    display: inline-block;
    padding: 14px 24px;
    background-color: #fff; /* Buttons in Weiß */
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  /* Hover-Effekte */
  .fancy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  /* Responsiveness für mobile */
  @media (max-width: 768px) {
    .welcome-section h2 {
      font-size: 2.2rem;
    }
    .welcome-text {
      font-size: 1.1rem;
    }
    .fancy-btn {
      margin-bottom: 10px;
    }
  }


  
/* =========================================
   GTA5 Section mit Parallax, Fade & Blur
   ========================================= */
   .gta5-section {
    position: relative;
  
    /* Größer als 100vh, damit beim Eintreffen
       nicht direkt „in der Mitte“ gescrollt wird. 
       So sieht man mehr vom Bild oberhalb und unterhalb. */
    min-height: 40vh;  
    margin: 0;
    padding: 60px 20px;
    
    /* Wichtig: NICHT overflow: hidden -> 
       damit unten kein weißer Balken entsteht */
    overflow: visible;
  
    /* Parallax-Hintergrund (wird via JS verschoben) */
    background: url("../../images/gta5-bg.jpg") center top / cover no-repeat;
    /* Das 'center top' sorgt dafür, dass wir beim Start 
       den oberen Bereich des Bildes eher im Fokus haben. */
  
    /* Text erst mal weiß, falls du globale .gta5-section > p etc. hast */
    color: #fff;
  }
  
  /* Overlay für Gray + Blur + Fades an top & bottom */
  .gta5-section::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; left:0; right:0; bottom:0 */
    z-index: 0;
  
    /* Leichtes Blur auf dem darunterliegenden Bild */
    backdrop-filter: blur(4px);
  
    /* Grauer Overlay/Fade von oben und unten, 
       in der Mitte halbtransparent */
    background: linear-gradient(
      to bottom,
      #3b3b3b 0%,   /* oben: dunkleres Grau */
      rgba(128,128,128,0.3) 20%,  /* Mitte: weniger grau */
      rgba(128,128,128,0.3) 60%,  
      rgba(128,128,128,0.7) 100%  /* unten: wieder dunkleres Grau */
    );
  }
  
  /* Inhalt */
  .gta5-content {
    position: relative;
    z-index: 1; /* Inhalt über dem Overlay */
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Falls wenig Text, kannst du min-height 100% machen, 
       um es vertikal zu zentrieren. Beispiel: */
    min-height: 30vh; 
  }
  
  .gta5-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }
  
  .gta5-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Link-Stile */
  .gta5-content a {
    color: #ffce00;
    text-decoration: none;
    font-weight: bold;
  }
  .gta5-content a:hover {
    text-decoration: underline;
  }
  
  /* --- Responsive --- */
  @media (max-width: 768px) {
    .gta5-section {
      min-height: auto; /* Auf Mobile kann man normal scrollen */
      padding: 40px 20px;
    }
    .gta5-content {
      min-height: auto; /* Kein Zwang 100vh auf sehr kleinem Screen */
    }
    .gta5-content h2 {
      font-size: 2rem;
    }
    .gta5-content p {
      font-size: 1.1rem;
    }
  }
  
  .ticker-section {
    width: 100%;
    background: #3b3b3b; /* Beispiel-Hintergrundfarbe */
    padding: 10px 0;     /* Abstand oben/unten */
  }
  
  /* Container für Überschrift (links) und Ticker (rechts) */
  .ticker-container {
    display: flex;
    flex-direction: row;   /* Standard: Heading links, Ticker rechts */
    align-items: center;
    justify-content: flex-start; 
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Abstand zwischen Heading und Ticker */
  }
  
  /* Überschrift links */
  .ticker-heading {
    min-width: 120px; /* Damit sie nicht zu schmal wird */
    margin: 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  /* Ticker-Bereich (rechts) */
  .ticker {
    position: relative;
    flex: 1;              /* Nimmt den restlichen Platz ein */
    height: 40px;         /* Feste Höhe, anpassbar */
    overflow: hidden;     /* Versteckt den Text, der herausscrollt */
    background: #3b3b3b;     /* Optionaler Hintergrund */
    border: 1px solid #3b3b3b;
  }
  
  /* Das bewegte Element im Ticker */
  .ticker-move {
    display: inline-flex;
    /* Endlos-Animation von rechts nach links */
    animation: ticker-scroll 15s linear infinite;
    white-space: nowrap; /* Damit alle Links in einer Zeile bleiben */
  }
  
  /* Links im Ticker */
  .ticker-move a {
    display: inline-block;
    padding: 0 20px;      /* Abstand zwischen den einzelnen Links */
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    line-height: 40px;    /* Vertikale Zentrierung bei 40px Höhe */
  }

  /* Tag-Label vor dem Text */
  .ticker-move .tag1 {
    display: inline-block;
    background: #d9534f; /* z.B. roter Hintergrund */
    color: #fff;
    border-radius: 4px;
    padding: 0 5px;
    margin-right: 5px;
    font-size: 0.85rem;
  }

  .ticker-move .tag2 {
    display: inline-block;
    background: #d0ff01; /* z.B. roter Hintergrund */
    color: #000000;
    border-radius: 4px;
    padding: 0 5px;
    margin-right: 5px;
    font-size: 0.85rem;
  }

  .ticker-move .tag3 {
    display: inline-block;
    background: #00ff0d; /* z.B. roter Hintergrund */
    color: #000000;
    border-radius: 4px;
    padding: 0 5px;
    margin-right: 5px;
    font-size: 0.85rem;
  }

  /* Bei Hover Animation pausieren */
  .ticker:hover .ticker-move {
    animation-play-state: paused;
  }

  /* Keyframes für die Endlos-Scroll-Animation */
  @keyframes ticker-scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      /* -50%, wenn du den Inhalt zweimal hintereinander in .ticker-move hast */
      transform: translateX(-50%);
    }
  }

  /* Responsive Anpassung für kleine Bildschirme */
  @media (max-width: 768px) {
    .ticker-container {
      flex-direction: column; /* Überschrift oben, Ticker unten */
      align-items: flex-start;
      gap: 10px;
    }

    .ticker-heading {
      text-align: left;
    }

    .ticker {
      width: 100%;
      height: 30px;
    }

    .ticker-move a {
      font-size: 0.9rem;
      line-height: 30px;
    }
  }

/* ========== Webradio Section ========== */
.webradio-section {
  text-align: center;
  /* Du kannst ggf. einen anderen Hintergrund wählen, 
     z.B. #f9f9f9 oder #3b3b3b */
}

/* Layout der Radios */
.radio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.radio-station {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 280px;  /* Feste Breite für eine kompakte Box */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
}

.radio-station h3 {
  margin-bottom: 20px;
  color: #333;
}

/* Schallplatte */
.record {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px auto;
  background: url('../../images/record.png') center/cover no-repeat;
  /* Falls du kein record.png hast, besorge dir ein passendes Image 
     oder ersetze es durch eine CSS-Kreation. */
  border-radius: 50%;
}

/* Animation für Rotation */
.spin {
  animation: rotateRecord 2s linear infinite;
}

@keyframes rotateRecord {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Play/Pause Button */
.play-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #3b3b3b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive: Radios in einer Spalte, wenn es zu schmal wird */
@media (max-width: 768px) {
  .radio-station {
    width: 100%;
    max-width: 400px;
  }
}

.webradios-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  position: relative;
}

/* Das "Vinyl-O" innerhalb der Überschrift */
.vinyl-o {
  display: inline-block;
  width: 1em;    /* Breite/Höhe orientieren sich an der Schriftgröße */
  height: 1em;
  margin: 0 2px;
  vertical-align: middle; /* Damit es sich in der Textzeile ausrichtet */

  /* Beispiel: Eine kleine Schallplatte als Hintergrundbild */
  background: url("../../images/record.png") no-repeat center center;
  background-size: contain; /* Damit es in dem 1em × 1em-Bereich passt */

  /* Runder Rahmen, falls du willst */
  border-radius: 50%;
}

/* Zusätzlicher Intro-Text-Stil */
.webradios-intro {
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  text-align: center;
  color: #555;
}

  /* Footer */
  .footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap; /* Für responsive Umbrüche */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 200px; /* oder eine andere Breite, z.B. 25% */
    min-width: 200px;
  }
  
  .footer-column h3 {
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 6px;
  }
  
  .footer-column a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px; /* Bisheriger Wert */
      max-width: 1200px;
      margin: 0 auto;
    }
  }
  
  