
:root{
 --blue:#1e90ff;
 --blue2:#60a5fa;
 --bg:#f4f7fb;
 --glass:rgba(255,255,255,.75);
 --text:#0f172a;
 --muted:#475569;
}

/* RESET */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
a{text-decoration:none;color:inherit}

/* BODY */
body{
 font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
 background:
  radial-gradient(1200px 600px at 10% -10%, rgba(30,144,255,.18), transparent 40%),
  radial-gradient(1200px 600px at 90% 110%, rgba(96,165,250,.22), transparent 40%),
  var(--bg);
 color:var(--text);
}

/* =====================
   HEADER
===================== */
header{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* =====================
   HEADER CARD
===================== */
.header-card{
  max-width: 1400px;
  margin: 22px auto 40px;
  background: var(--glass);
  backdrop-filter: blur(22px);
  border-radius: 34px;
  box-shadow:
    0 40px 120px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;

  transform: translateZ(0) scale(1);
  transform-origin: top center;

  transition:
    transform .32s ease,
    margin .32s ease,
    border-radius .32s ease;
}

/* =====================
   NAV
===================== */
.header-nav{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 22px 30px;
  transition: padding .32s ease;
}

.logo{
  height: 40px;
  transition: height .32s ease;
}

.nav{
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a{
  position: relative;
  padding: 10px 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height:3px;
  background:linear-gradient(90deg,var(--blue),var(--blue2));
  border-radius:99px;
  transform:translateX(-50%);
  transition:.32s ease;
}

.nav a:hover{color:var(--blue)}
.nav a:hover::after{width:100%}

/* =====================
   LISTEN BUTTON
===================== */
.listen-btn{
  padding:16px 34px;
  border-radius:999px;
  font-size:.7rem;
  letter-spacing:.22em;
  font-weight:900;
  text-transform:uppercase;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  box-shadow:0 18px 40px rgba(30,144,255,.35);
  transition: all .32s ease;
}

/* =====================
   NOW BAR
===================== */
.header-now{
  display:grid;
  grid-template-columns:1.6fr 1.2fr .6fr;
  gap:30px;
  padding:26px 30px 34px;
  border-top:1px solid rgba(0,0,0,.06);
  transition: padding .32s ease;
}

.label{
  margin-bottom:6px;
  line-height:1;
}

/* ARTIST – fett & dominant */
.artist{
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:.01em;
  line-height:1.15;
  color:#0f172a;
}

.eq{
  display:flex;
  gap:6px;
  height:22px;
  align-items:flex-end;
}

.eq span{
  width:5px;
  background:linear-gradient(180deg,var(--blue),var(--blue2));
  border-radius:4px;
  animation:eqWave 1.2s ease-in-out infinite;
  transform-origin:bottom;
}

/* 🔊 Unterschiedliche Bewegungen */
.eq span:nth-child(1){ animation-delay: 0s; }
.eq span:nth-child(2){ animation-delay: .15s; }
.eq span:nth-child(3){ animation-delay: .3s; }
.eq span:nth-child(4){ animation-delay: .45s; }
@keyframes eqWave{
  0%   { height:30%; }
  25%  { height:80%; }
  50%  { height:45%; }
  75%  { height:100%; }
  100% { height:35%; }
}

.listeners .count{
  font-size:2rem;
  font-weight:900;
  transition: font-size .32s ease;
}

/* =====================
   SHRINK STATE
===================== */
header.shrink .header-card{
  transform: scale(0.94);
  margin-top: 8px;
  border-radius: 22px;
}

header.shrink .header-nav{
  padding: 12px 22px;
}

header.shrink .logo{
  height: 28px;
}

header.shrink .listen-btn{
  padding: 10px 20px;
  font-size: .6rem;
}

header.shrink .header-now{
  padding: 14px 22px 18px;
}

header.shrink .artist{
  font-size: 1.05rem;
}

header.shrink .listeners .count{
  font-size: 1.4rem;
}

header.shrink .eq{
  height: 18px;
}

header.shrink .eq span{
  width: 4px;
}
/* =====================
   NEWS DETAIL – HEADER IMMER KLEIN
===================== */
body.news-detail header .header-card{
  transform: scale(.94);
  margin-top: 10px;
  border-radius: 22px;
}

body.news-detail header .header-nav{
  padding: 12px 22px;
}

body.news-detail header .logo{
  height: 28px;
}

body.news-detail header .listen-btn{
  padding: 10px 20px;
  font-size: .6rem;
}

body.news-detail header .header-now{
  padding: 14px 22px 18px;
}

body.news-detail header .artist{
  font-size: 1.05rem;
}

body.news-detail header .listeners .count{
  font-size: 1.4rem;
}

body.news-detail header .eq{
  height: 18px;
}

body.news-detail header .eq span{
  width: 4px;
}


/* =====================
   SLIDER
===================== */
.slider{
 max-width:1400px;
 margin:0 auto 80px;
 height:520px;
 border-radius:36px;
 overflow:hidden;
 position:relative;
 box-shadow:0 50px 120px rgba(0,0,0,.18);
}
.slide{
 position:absolute;
 inset:0;
 background-size:cover;
 background-position:center;
 opacity:0;
 transition:opacity 1s ease;
}
.slide.active{opacity:1;z-index:1}
.slide::before{
 content:'';
 position:absolute;
 inset:0;
 background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.15));
}
.slide-content{
 position:absolute;
 left:60px;
 bottom:60px;
 max-width:520px;
 color:#fff;
}
.slide-content h2{
 font-size:2.8rem;
 margin:0 0 14px;
 font-weight:900;
}
.slide-content p{
 font-size:1.05rem;
 line-height:1.6;
}
.slide-content a{
 display:inline-block;
 margin-top:20px;
 padding:14px 34px;
 border-radius:999px;
 background:linear-gradient(135deg,var(--blue),var(--blue2));
 font-weight:900;
 letter-spacing:.12em;
 text-transform:uppercase;
}

@media(max-width:900px){
 .nav{display:none}
 .header-now{grid-template-columns:1fr}
 .listeners{text-align:left}
 .slide-content{left:30px;right:30px}
 .slide-content h2{font-size:2rem}
}

/* =====================
   PFEILE
===================== */
.slider-arrow{
 position:absolute;
 top:50%;
 transform:translateY(-50%);
 width:52px;
 height:52px;
 border-radius:50%;
 background:rgba(0,0,0,.45);
 color:#fff;
 display:flex;
 align-items:center;
 justify-content:center;
 font-size:26px;
 cursor:pointer;
 z-index:10;
 transition:.25s;
 user-select:none;
}
.slider-arrow:hover{background:rgba(0,0,0,.75)}
.slider-arrow.left{left:20px}
.slider-arrow.right{right:20px}

@media(max-width:900px){
 .slider-arrow{
   width:42px;
   height:42px;
   font-size:22px;
 }
 .slide-content{left:30px;right:30px}
}

/* =====================
   ÜBER UNS – BRAND CLEAN
===================== */
.about{
  position:relative;
  max-width:1200px;
  margin:160px auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:360px 1fr;
  gap:90px;
  align-items:center;
}

.about::before{
  content:'';
  position:absolute;
  inset:-100px;
  background:
    radial-gradient(500px 320px at 15% 30%, rgba(6, 111, 240, 0.22), transparent 60%),
    radial-gradient(500px 320px at 85% 70%, rgba(5, 138, 196, 0.18), transparent 60%);
  z-index:-1;
}

.about-logo img{
  width:100%;
  max-width:300px;
  filter:drop-shadow(0 20px 40px rgba(56,189,248,.25));
}

.about-text h2{
  font-size:3rem;
  font-weight:900;
  margin-bottom:22px;
  background:linear-gradient(90deg,#1e90ff,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about-text p{
  font-size:1.1rem;
  line-height:1.85;
  color:#475569;
  margin-bottom:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about{
    grid-template-columns:1fr;
    text-align:center;
    gap:70px;
  }
  .about-logo{
    display:flex;
    justify-content:center;
  }
}
/* =====================
   DIENSTLEISTUNGEN – RADIO POWER
===================== */
.services-section{
  position:relative;
  padding:150px 24px;
  background:linear-gradient(
    180deg,
    #f4f7fb 0%,
    #eef3ff 100%
  );
  overflow:hidden;
}

.services-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 400px at 10% 20%, rgba(30,144,255,.12), transparent 60%),
    radial-gradient(600px 400px at 90% 80%, rgba(56,189,248,.15), transparent 60%);
  z-index:0;
}

.services-inner{
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

/* HEAD */
.services-head{
  max-width:700px;
  margin-bottom:100px;
}

.services-head h2{
  font-size:2.9rem;
  font-weight:900;
  margin-bottom:20px;
  background:linear-gradient(90deg,#1e90ff,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.services-head p{
  font-size:1.15rem;
  line-height:1.85;
  color:#475569;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:90px;
}

.service-item{
  position:relative;
  padding-top:42px;
}

.service-number{
  position:absolute;
  top:0;
  left:0;
  font-size:4rem;
  font-weight:900;
  color:#f5f8fa;
  opacity:.18;
}

.service-item h3{
  font-size:1.6rem;
  font-weight:900;
  margin-bottom:16px;
  color:#0f172a;
}

.service-item p{
  font-size:1.05rem;
  line-height:1.85;
  color:#475569;
}

/* RESPONSIVE */
@media(max-width:900px){
  .services-grid{
    grid-template-columns:1fr;
    gap:70px;
  }
  .services-head h2{
    font-size:2.3rem;
  }
}
/* =====================
   NEWS – PREMIUM LOOK
===================== */

.news-section{
  padding:140px 24px;

  /* 🔥 Background Image + Overlay */
  background:
    linear-gradient(
      180deg,
      rgba(244, 247, 251, 0.397) 0%,
      rgba(244, 247, 251, 0) 40%,
      rgba(244, 247, 251, 0.212) 100%
    ),
    radial-gradient(800px 400px at 10% 0%, rgba(30,144,255,.12), transparent 60%),
    radial-gradient(800px 400px at 90% 100%, rgba(96,165,250,.15), transparent 60%),
    url("https://i.postimg.cc/k4N8fFVX/IMG-0524-modified.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-inner{
  max-width:1200px;
  margin:0 auto;
}

/* HEAD */
.news-head{
  max-width:600px;
  margin-bottom:90px;
}

.news-head h2{
  font-size:3rem;
  font-weight:900;
  margin-bottom:18px;
  background:linear-gradient(90deg,#1e90ff,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.news-head p{
  font-size:1.15rem;
  line-height:1.8;
  color:#475569;
}

/* EMPTY */
.news-empty{
  text-align:center;
  font-size:1.1rem;
  color:#64748b;
}

/* GRID */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
}

/* CARD */
.news-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.15);
  display:flex;
  flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease;
}

.news-card:hover{
  transform:translateY(-12px);
  box-shadow:0 45px 120px rgba(0,0,0,.22);
}

/* IMAGE – HD LOOK */
.news-image{
  position:relative;
  width:100%;
  aspect-ratio:16/9;      /* 🔥 IMMER GLEICH HOCH */
  overflow:hidden;
}

.news-image img{
  width:100%;
  height:100%;
  object-fit:cover;      /* 🔥 kein Verzerren */
  transform:scale(1);
  transition:transform .6s ease;
}

.news-card:hover .news-image img{
  transform:scale(1.08);
}

/* CONTENT */
.news-content{
  padding:26px 28px 22px;
}

.news-content time{
  display:block;
  font-size:.75rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#64748b;
  margin-bottom:10px;
}

.news-content h3{
  font-size:1.35rem;
  font-weight:900;
  line-height:1.3;
  color:#0f172a;
}

/* LINK */
.news-link{
  margin:0 28px 26px;
  font-weight:900;
  font-size:.7rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#1e90ff;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.news-link:hover{
  text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .news-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .news-grid{
    grid-template-columns:1fr;
  }

  .news-head h2{
    font-size:2.2rem;
  }
}

.header-now{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  align-items:center;        /* vertikal */
  justify-items:stretch;     /* 🔥 NICHT center */
  gap:40px;
  padding:26px 30px;
  border-top:1px solid rgba(0,0,0,.06);
}
.now-block,
.weather-block,
.next-block,
.listeners{
  display:flex;
  flex-direction:column;
  align-items:flex-start;   /* 🔥 LINKS */
  text-align:left;
}




.weather-row{
  font-size:1.35rem;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:6px;
}


.show-meta{
  margin-top:4px;
  font-size:.75rem;
  color:#6b7280;
}

.moderator-mini{
  margin-top:4px;
  font-size:.7rem;
  color:#6b7280;
  background:rgba(0,0,0,.05);
  padding:4px 10px;
  border-radius:999px;
  width:fit-content;
}

/* =====================
   TEAM PAGE
===================== */

.team-page{
  background:#f4f7fb;
}

/* =====================
   HEAD
===================== */

.team-section{
  padding:24px;
}

.team-inner{
  max-width:1200px;
  margin:0 auto;
}

.team-head{
  max-width:700px;
  margin-bottom:100px;
}

.team-head h1{
  font-size:3.2rem;
  font-weight:900;
  margin-bottom:18px;
  background:linear-gradient(90deg,#1e90ff,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.team-head p{
  font-size:1.15rem;
  line-height:1.8;
  color:#475569;
}

/* =====================
   GRID
===================== */

.team-grid-large{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:56px;
}

/* =====================
   CARD
===================== */

.team-card-large{
  text-decoration:none;
  color:inherit;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  border-radius:32px;
  padding:104px 30px 40px;
  position:relative;
  text-align:center;
  box-shadow:
    0 45px 120px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.7);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease;
}

.team-card-large:hover{
  transform:translateY(-18px) scale(1.03);
  box-shadow:
    0 90px 180px rgba(30,144,255,.28),
    inset 0 1px 0 rgba(255,255,255,.85);
}

/* =====================
   AVATAR
===================== */

.team-avatar-large{
  position:absolute;
  top:-72px;
  left:50%;
  transform:translateX(-50%);
  width:140px;
  height:140px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  padding:6px;
  box-shadow:
    0 26px 70px rgba(0,0,0,.35),
    0 0 0 8px rgba(30,144,255,.14);
}

.team-avatar-large img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* =====================
   TEXT
===================== */

.team-info-large strong{
  display:block;
  font-size:1.55rem;
  font-weight:900;
  color:#0f172a;
  margin-bottom:12px;
}

.team-info-large span{
  display:inline-block;
  padding:8px 18px;
  font-size:.75rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  border-radius:999px;
  background:linear-gradient(135deg,#1e90ff,#38bdf8);
  color:#fff;
  font-weight:900;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:600px){
  .team-card-large{padding-top:92px}
  .team-avatar-large{width:120px;height:120px;top:-60px}
  .team-head h1{font-size:2.4rem}
}
/* =====================
   FOOTER
===================== */

.site-footer{
  background:linear-gradient(180deg,#0f172a,#020617);
  color:#cbd5f5;
  padding:80px 24px 30px;
  margin-top:140px;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:60px;
}

.footer-brand img{
  width:160px;
  margin-bottom:16px;
}

.footer-brand p{
  font-size:.95rem;
  color:#94a3b8;
  line-height:1.6;
}

.site-footer h4{
  font-size:.9rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#38bdf8;
  margin-bottom:18px;
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.site-footer li{
  margin-bottom:10px;
}

.site-footer a{
  color:#cbd5f5;
  text-decoration:none;
  font-size:.95rem;
  transition:color .25s ease;
}

.site-footer a:hover{
  color:#38bdf8;
}

.social-icons{
  display:flex;
  gap:14px;
}

.social-icons a{
  font-size:1.4rem;
  transition:transform .25s ease;
}

.social-icons a:hover{
  transform:translateY(-4px) scale(1.15);
}

.footer-bottom{
  margin-top:70px;
  text-align:center;
  font-size:.85rem;
  color:#64748b;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:22px;
}

/* RESPONSIVE */
@media(max-width:600px){
  .site-footer{
    padding-top:60px;
  }
}

/* =====================
   KONTAKT – MODERN CLEAN
===================== */

.contact{
  padding:24px;
  background:#f4f7fb;
}

.contact-inner{
  max-width:1100px;
  margin:0 auto;
}

.contact-card{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(20px);
  border-radius:30px;
  padding:42px 48px;
  box-shadow:0 40px 120px rgba(0,0,0,.14);
}

/* HEAD */
.contact-head{
  margin-bottom:30px;
}

.contact-head h1{
  font-size:2.6rem;
  font-weight:900;
  background:linear-gradient(90deg,#1e90ff,#60a5fa);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contact-head p{
  margin-top:8px;
  font-size:1rem;
  color:#475569;
  max-width:620px;
}

/* SUCCESS */
.contact-success{
  background:#e8f1ff;
  padding:14px 18px;
  border-radius:14px;
  font-weight:600;
  margin-bottom:22px;
}

/* FORM */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-form .row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  font-size:.9rem;
  background:#fff;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#1e90ff;
  box-shadow:0 0 0 3px rgba(30,144,255,.15);
}

/* BUTTON */
.contact-form button{
  align-self:flex-end;
  margin-top:10px;
  padding:14px 48px;
  border-radius:999px;
  border:none;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.25em;
  text-transform:uppercase;
  cursor:pointer;
  background:linear-gradient(135deg,#1e90ff,#60a5fa);
  color:#fff;
  box-shadow:0 18px 40px rgba(30,144,255,.35);
  transition:.25s;
}

.contact-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 26px 60px rgba(30,144,255,.45);
}

/* MOBILE */
@media(max-width:900px){
  .contact-card{
    padding:30px 24px;
  }

  .contact-form .row{
    grid-template-columns:1fr;
  }

  .contact-form button{
    width:100%;
  }
}
.badge-category{
  background:#eef2ff;
  color:#3730a3;
  padding:.25rem .6rem;
  border-radius:999px;
  font-size:.7rem;
  font-weight:700;
}
