/* samcro-webradio.de - dunkles Rockradio-Layout, keine externen Ressourcen.
   Schriften bewusst systemseitig: keine Google-Fonts-CDN, kein Webfont-Download. */

:root {
  --bg:        #0c0d11;
  --bg-2:      #101219;
  --surface:   #171a22;
  --surface-2: #1d212b;
  --line:      #2a2f3b;
  --text:      #eae8e5;
  --muted:     #a6acb8;
  --accent:    #ff4d5e;
  --accent-dk: #d92c40;
  --amber:     #f5a524;
  --radius:    14px;
  --wrap:      1140px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;              /* verhindert horizontales Scrollen durch den Drawer */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.95rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.15em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 20px; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.center { text-align: center; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #14060a; padding: 10px 16px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 13, 17, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 16px; min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand > span {
  display: flex; flex-direction: column; line-height: 1.05;
  font-weight: 800; font-size: 1.16rem; letter-spacing: .02em; text-transform: uppercase;
}
.brand em { font-style: normal; color: var(--accent); letter-spacing: .28em; font-size: .72rem; }
.brand small {
  font-weight: 500; font-size: .68rem; color: var(--muted);
  text-transform: none; letter-spacing: 0; margin-top: 3px;
}
.logo-mark { display: block; }

.menu { display: flex; gap: 6px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.menu a {
  display: block; padding: 9px 13px; border-radius: 9px;
  color: var(--text); font-size: .93rem; font-weight: 600;
}
.menu a:hover { background: var(--surface); text-decoration: none; }
.menu a.active { color: var(--accent); background: var(--surface); }

.nav-toggle, .burger, .drawer-backdrop { display: none; }

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(255, 77, 94, .20), transparent 65%),
    radial-gradient(700px 380px at 88% 0%, rgba(245, 165, 36, .12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-inner { padding: 74px 20px 58px; max-width: 860px; }
.eyebrow {
  display: inline-block; margin-bottom: 16px; padding: 5px 12px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); background: rgba(245, 165, 36, .07);
}
.hero h1 { margin-bottom: .35em; }
.hero .hl { color: var(--accent); }
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 10px;
  font-weight: 700; font-size: .96rem; border: 1px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #180509; }
.btn-primary:hover { background: #ff6675; }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Equalizer als Bildmarke, rein dekorativ */
.eq { display: flex; align-items: flex-end; gap: 5px; height: 46px; margin-top: 40px; opacity: .8; }
.eq span {
  width: 6px; border-radius: 3px; background: linear-gradient(180deg, var(--accent), var(--accent-dk));
  animation: eq 1.6s ease-in-out infinite;
}
.eq span:nth-child(2n)  { background: linear-gradient(180deg, var(--amber), #c07a10); }
.eq span:nth-child(1)  { height: 42%; animation-delay: 0s;    }
.eq span:nth-child(2)  { height: 78%; animation-delay: .15s;  }
.eq span:nth-child(3)  { height: 30%; animation-delay: .3s;   }
.eq span:nth-child(4)  { height: 92%; animation-delay: .45s;  }
.eq span:nth-child(5)  { height: 55%; animation-delay: .1s;   }
.eq span:nth-child(6)  { height: 68%; animation-delay: .5s;   }
.eq span:nth-child(7)  { height: 36%; animation-delay: .25s;  }
.eq span:nth-child(8)  { height: 84%; animation-delay: .35s;  }
.eq span:nth-child(9)  { height: 48%; animation-delay: .55s;  }
.eq span:nth-child(10) { height: 72%; animation-delay: .05s;  }
.eq span:nth-child(11) { height: 34%; animation-delay: .4s;   }
.eq span:nth-child(12) { height: 60%; animation-delay: .2s;   }
@keyframes eq { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }
.eq span { transform-origin: bottom; }
@media (prefers-reduced-motion: reduce) {
  .eq span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------- Seitenkopf */
.page-hero {
  background: linear-gradient(180deg, rgba(255, 77, 94, .08), transparent), var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 34px;
}
.page-hero h1 { max-width: 24ch; margin-bottom: .3em; }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.hub-lead { color: var(--muted); max-width: 68ch; font-size: 1.04rem; margin: 0; }

.meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .85rem; color: var(--muted); }
.pill {
  padding: 4px 11px; border-radius: 999px; background: rgba(255, 77, 94, .12);
  color: var(--accent); font-weight: 700; font-size: .78rem;
}
.dot { opacity: .5; }

/* ----------------------------------------------------------------- Karten */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: #3b4150; transform: translateY(-2px); }
.card h3 { margin: 10px 0 8px; font-size: 1.12rem; }
.card h3 a { color: var(--text); }
.card h3 a:hover { color: var(--accent); text-decoration: none; }
.card p { color: var(--muted); font-size: .93rem; margin-bottom: 12px; }
.card-meta { font-size: .78rem; color: #7f8695; }
.tag {
  display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
}

.section-head { margin-bottom: 28px; }
.kicker {
  display: block; font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}

.hub-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.hub-card {
  display: block; padding: 26px 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); color: var(--text);
}
.hub-card:hover { border-color: var(--accent); text-decoration: none; }
.hub-card h3 { color: var(--text); }
.hub-card p { color: var(--muted); font-size: .93rem; }
.more { color: var(--accent); font-weight: 700; font-size: .9rem; }

.feature {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 28px; margin-bottom: 22px;
}
.feature h3 { font-size: 1.45rem; margin: 8px 0 10px; }
.feature h3 a { color: var(--text); }
.feature h3 a:hover { color: var(--accent); text-decoration: none; }
.feature p { color: var(--muted); }

.split { display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.facts li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px;
}
.facts strong { display: block; color: var(--accent); font-size: 1.02rem; margin-bottom: 3px; }
.facts span { color: var(--muted); font-size: .92rem; }

/* ------------------------------------------------------------------ Prosa */
.prose {
  width: 100%; max-width: 760px; margin: 0 auto; padding: 46px 20px 20px;
}
.prose h2 { margin-top: 1.9em; padding-top: .2em; }
.prose h3 { margin-top: 1.5em; }
.prose .lead { font-size: 1.14rem; color: #cdd2da; border-left: 3px solid var(--accent); padding-left: 18px; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose strong { color: #fff; }
.prose code {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 5px;
  padding: 1px 6px; font-size: .9em;
}
.prose .note {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--amber);
  border-radius: 10px; padding: 14px 18px; color: var(--muted); font-size: .93rem;
}
.backlink { margin-top: 2.4em; padding-top: 1.2em; border-top: 1px solid var(--line); font-size: .92rem; }

/* Tabellen in der Prosa bleiben mobil scrollbar statt zu ueberlaufen */
.prose table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }

/* -------------------------------------------------------------------- FAQ */
.faq { margin-top: 2.6em; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 11px;
  padding: 14px 18px; margin-bottom: 10px;
}
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--text); }
.faq-item summary::marker { color: var(--accent); }
.faq-item p { margin: 12px 0 2px; color: var(--muted); font-size: .95rem; }

/* -------------------------------------------------------------- Weiterlesen */
.related { margin-top: 2.8em; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.related h2 { margin-top: 0; font-size: 1.12rem; }
.related ul { list-style: none; margin: 0; padding: 0; }
.related li { margin-bottom: 12px; }
.related a { display: block; color: var(--text); }
.related a:hover { color: var(--accent); text-decoration: none; }
.rel-cat {
  display: block; font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
}
.rel-title { font-weight: 600; }

/* ----------------------------------------------------------- Hub / Magazin */
.hub-more { margin-top: 44px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips a {
  display: block; padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); color: var(--text); font-size: .9rem;
}
.chips a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.mag-sec { margin-bottom: 46px; }
.mag-sec h2 a { color: var(--text); }
.mag-sec h2 a:hover { color: var(--accent); text-decoration: none; }
.mag-sec > p { color: var(--muted); max-width: 70ch; }
.linklist { list-style: none; margin: 18px 0 0; padding: 0; border-top: 1px solid var(--line); }
.linklist li { border-bottom: 1px solid var(--line); padding: 14px 2px; display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; justify-content: space-between; }
.linklist a { color: var(--text); font-weight: 600; }
.linklist a:hover { color: var(--accent); text-decoration: none; }
.li-meta { font-size: .8rem; color: #7f8695; }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: #090a0d; border-top: 1px solid var(--line); padding: 52px 0 26px; margin-top: 40px; }
.foot-grid { display: grid; gap: 32px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.foot-about p { color: var(--muted); font-size: .9rem; margin-top: 14px; }
.foot-col h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.foot-col h4 a { color: inherit; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { color: var(--muted); font-size: .89rem; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: .84rem; color: #7f8695;
}
.foot-bottom a { color: #7f8695; }
.foot-bottom a:hover { color: var(--accent); }

/* -------------------------------------------------------------- Mobil */
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 44px; height: 44px; padding: 10px;
    border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  }
  .burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

  .menu-wrap {
    position: fixed; top: 0; right: 0; z-index: 60;
    width: min(82vw, 320px); height: 100dvh;
    background: var(--bg-2); border-left: 1px solid var(--line);
    padding: 84px 22px 22px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .menu { flex-direction: column; gap: 4px; margin: 0; }
  .menu a { padding: 13px 14px; font-size: 1.02rem; border-radius: 10px; }

  .drawer-backdrop {
    position: fixed; inset: 0; z-index: 55;
    background: rgba(0, 0, 0, .6);
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .nav-toggle:checked ~ .menu-wrap { transform: translateX(0); }
  .nav-toggle:checked ~ .drawer-backdrop { display: block; opacity: 1; pointer-events: auto; }
  .nav-toggle:checked ~ .burger { position: relative; z-index: 65; }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-inner { padding: 52px 20px 44px; }
  .section { padding: 46px 20px; }
  .prose { padding-top: 34px; }
  .foot-grid { grid-template-columns: 1fr; }
  .linklist li { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .brand small { display: none; }
  body { font-size: 16px; }
}
