/* ============================================================
   Radio Cuxhaven – Brand-Design
   Maritimes Layout: Marineblau + Signalrot, helle Optik.
   Lädt nach style.css und überschreibt gezielt.
   ============================================================ */

:root {
  /* Marken-Farben – aus dem Logo extrahiert */
  --rc-blue:        #1a3a6b;
  --rc-blue-dark:   #122b50;
  --rc-blue-light:  #3d6bb5;
  --rc-blue-50:     #e3eaf3;

  --rc-red:         #e63946;
  --rc-red-dark:    #c52936;
  --rc-red-50:      #f0e4e5;

  --rc-bg:          #fafafa;
  --rc-text:        #2c3a52;
  --rc-text-muted:  #6a7a90;
  --rc-border:      #eceef3;

  /* primary auf Marineblau, accent auf Signalrot */
  --primary:        var(--rc-blue);
  --primary-dark:   var(--rc-blue-dark);
  --text:           var(--rc-text);
  --text-muted:     var(--rc-text-muted);
  --bg:             var(--rc-bg);
}

body { background: var(--rc-bg); }

/* ============================================================
   BLAULICHT-TICKER (oben, rot)
   ============================================================ */
.rc-ticker {
  background: var(--rc-red);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.rc-ticker__label {
  background: var(--rc-red-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rc-ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
  animation: rc-blink 1.5s ease-in-out infinite;
}
.rc-ticker__wrapper {
  overflow: hidden;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.rc-ticker__text {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: rc-ticker-scroll 40s linear infinite;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding-left: 16px;
}
.rc-ticker__text span::before { content: '🚨 '; }
.rc-ticker:hover .rc-ticker__text { animation-play-state: paused; }

@keyframes rc-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes rc-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ============================================================
   HEADER (weiß mit roter Unterlinie)
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--rc-red);
  box-shadow: 0 2px 4px rgba(26,58,107,.04);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.site-logo img { max-height: 56px; width: auto; }
.site-logo__text { line-height: 1.05; }
.site-logo__name {
  font-family: 'Arial Black', 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--rc-blue);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.site-logo__name .accent { color: var(--rc-red); }
.site-logo__slogan {
  font-size: 10.5px;
  color: var(--rc-blue);
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
}

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: 6px; list-style: none; }
.site-nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rc-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.site-nav__link:hover,
.site-nav__link.active {
  background: var(--rc-blue-50);
  color: var(--rc-blue);
  text-decoration: none;
}
.site-nav__dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid var(--rc-border);
  border-top: 2px solid var(--rc-red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(26,58,107,.12);
  min-width: 200px;
  padding: 6px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
}
.site-nav__item { position: relative; }
.site-nav__item:hover .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-nav__dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rc-blue);
  border-radius: 4px;
}
.site-nav__dropdown a:hover {
  background: var(--rc-blue-50);
  text-decoration: none;
}

/* ============================================================
   SERVICE BAR – maritim umgestylt
   ============================================================ */
.service-bar {
  background: var(--rc-blue);
  border-bottom: 0;
  font-size: 12.5px;
  font-weight: 500;
}
.service-bar__inner {
  max-width: 1280px;
  padding: 8px 24px;
}
.service-bar strong {
  color: rgba(255,255,255,.7);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ============================================================
   HERO – Marineblau-Verlauf mit weißer Welle unten
   ============================================================ */
.rc-hero {
  background: linear-gradient(135deg, #1a3a6b 0%, #2e5491 60%, #3d6bb5 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 24px 110px;
  color: #fff;
}
.rc-hero::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 30px;
  width: 320px;
  height: 360px;
  opacity: 0.06;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect x='36' y='20' width='28' height='8' fill='%23fff'/><rect x='40' y='28' width='20' height='6' fill='%23fff'/><path d='M40 34 L36 78 L64 78 L60 34 Z' fill='%23fff'/></svg>") no-repeat center / contain;
  pointer-events: none;
}
.rc-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -5%;
  width: 110%;
  height: 120px;
  background: var(--rc-bg);
  border-radius: 50%;
  z-index: 1;
}
.rc-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .rc-hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .rc-hero { padding: 36px 20px 90px; }
}
.rc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rc-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.rc-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: rc-blink 1.5s ease-in-out infinite;
}
.rc-hero__title {
  font-family: var(--font-head, sans-serif);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.rc-hero__title-accent { color: var(--rc-red); }
.rc-hero__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  max-width: 400px;
  margin: 0 0 26px;
}
.rc-hero__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.rc-hero__btn {
  background: var(--rc-red);
  color: #fff;
  border: 2px solid var(--rc-red);
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.rc-hero__btn:hover { background: var(--rc-red-dark); border-color: var(--rc-red-dark); transform: translateY(-1px); text-decoration: none; }
.rc-hero__btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.rc-hero__btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ============================================================
   GLAS-PLAYER auf dem Hero
   ============================================================ */
.rc-glass-player {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.rc-glass-player__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.rc-glass-player__icon {
  width: 50px;
  height: 50px;
  background: rgba(230,57,70,0.9);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.rc-glass-player__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-glass-player__live-badge {
  background: var(--rc-red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 3px;
}
.rc-glass-player__name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.rc-glass-player__sub {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-top: 1px;
}
.rc-glass-player__np {
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-glass-player__np-cover {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--rc-red), var(--rc-red-dark));
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  object-fit: cover;
}
.rc-glass-player__np-info { flex: 1; min-width: 0; }
.rc-glass-player__np-label {
  font-size: 9.5px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.rc-glass-player__np-title {
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-glass-player__np-artist {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.rc-glass-player__stats { display: flex; gap: 6px; }
.rc-glass-player__stat {
  flex: 1;
  background: rgba(255,255,255,.1);
  padding: 7px 10px;
  border-radius: 7px;
  text-align: center;
}
.rc-glass-player__stat-label {
  font-size: 9px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rc-glass-player__stat-value {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

/* ============================================================
   QUICK-TILES unter dem Hero
   ============================================================ */
.rc-tiles {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 3;
}
@media (max-width: 800px) {
  .rc-tiles { grid-template-columns: repeat(2, 1fr); }
}
.rc-tile {
  background: #fff;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--rc-border);
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: block;
}
.rc-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26,58,107,.08);
  border-color: var(--rc-blue-light);
  text-decoration: none;
}
.rc-tile__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}
.rc-tile__icon--blue { background: var(--rc-blue-50); color: var(--rc-blue); }
.rc-tile__icon--red  { background: var(--rc-red-50);  color: var(--rc-red);  }
.rc-tile__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--rc-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rc-tile__sub {
  font-size: 11px;
  color: var(--rc-text-muted);
  margin-top: 3px;
}

/* ============================================================
   Lead-Paragraph nach Tiles
   ============================================================ */
.rc-lead {
  max-width: 1280px;
  margin: 8px auto 0;
  padding: 16px 24px 36px;
}
.rc-lead p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--rc-text);
  max-width: 720px;
}
.rc-lead strong { color: var(--rc-blue); }

/* ============================================================
   Bestehende Hero-Slider auf Startseite ausblenden,
   wenn der neue Hero aktiv ist
   ============================================================ */
body.rc-design .hero-slider { display: none; }

/* ============================================================
   PLAYER BAR (unten, kompakt) – an Marken-Farben angepasst
   ============================================================ */
.player-bar {
  background: var(--rc-blue-dark);
  border-top: 3px solid var(--rc-red);
}
.btn-play {
  background: var(--rc-red);
  color: #fff;
}
.btn-play:hover { background: var(--rc-red-dark); }
.player-bar__live { background: var(--rc-red); }

/* ============================================================
   News-Cards an Markenstil anpassen
   ============================================================ */
.news-card__cat {
  background: var(--rc-blue-50);
  color: var(--rc-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10.5px;
  padding: 3px 9px;
  border-radius: 4px;
}
.news-card:hover { border-color: var(--rc-red); }
.section-head__title {
  color: var(--rc-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-head__more {
  color: var(--rc-red);
  font-weight: 700;
}

/* ============================================================
   FOOTER an Marken-Farben
   ============================================================ */
.site-footer {
  background: var(--rc-blue-dark);
  color: rgba(255,255,255,.75);
  border-top: 3px solid var(--rc-red);
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--rc-red); }
.footer-col__head {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--rc-red);
  padding-bottom: 6px;
  margin-bottom: 12px;
  display: inline-block;
}
