/* onepage.css — Stile der durchgehenden Startseite (aus Strato-Build übernommen) */

    /* ═══════════════════════════════════════════════════════════
       DESIGN TOKENS – alle Farben zentral hier ändern
    ═══════════════════════════════════════════════════════════ */
    :root {
      --bg-page:      #f0f2f5;
      --bg-surface:   #e8eaee;
      --bg-white:     #ffffff;
      --bg-deep:      #1c2333;
      --bg-deep2:     #242c3d;
      --accent:       #5b7fa6;
      --accent-lt:    #8aaac8;
      --accent-hover: #4a6d91;
      --text-main:    #1c2333;
      --text-muted:   #5a6478;
      --text-light:   #c8d3e0;
      --border:       #c5cdd8;
      --radius:       12px;
      --radius-lg:    18px;
      --shadow-sm:    0 1px 4px rgba(28,35,51,.08);
      --shadow-md:    0 4px 20px rgba(28,35,51,.12);
      --sb-open:      260px;   /* Sidebar-Breite offen  */
      --sb-closed:    64px;    /* Sidebar-Breite zu     */
      --banner-h:     34px;    /* Banner-Höhe           */
    }

    /* ═══════════════════════════════════════════════════════════
       RESET & BASIS
    ═══════════════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 15px; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-page);
      color: var(--text-main);
      line-height: 1.7;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    
    

    /* ═══════════════════════════════════════════════════════════
       SIDEBAR
       – position: fixed, immer sichtbar links
       – Toggle: Klasse .closed → schmal (sb-closed px)
       – localStorage speichert Zustand
    ═══════════════════════════════════════════════════════════ */
    #sidebar {
      position: fixed;
      top: 0; left: 0;
      width: var(--sb-open);
      height: 100vh;
      background: var(--bg-deep);
      z-index: 1000;             /* über dem Banner */
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: width .3s ease;
      border-right: 1px solid rgba(255,255,255,.05);
    }
    #sidebar.closed { width: var(--sb-closed); }

    /* Sidebar Header */
    .sb-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px;
      height: var(--banner-h);
      min-height: var(--banner-h);
      border-bottom: 1px solid rgba(255,255,255,.07);
      flex-shrink: 0;
    }
    #sidebar.closed .sb-header { justify-content: center; }

    .sb-logo {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: .18em;
      color: #fff;
      white-space: nowrap;
      transition: opacity .2s, width .3s;
      overflow: hidden;
    }
    #sidebar.closed .sb-logo { opacity: 0; width: 0; }

    /* Toggle-Button
       min-width: 32px → bleibt immer vollständig klickbar,
       auch wenn Sidebar auf 60px zusammengeklappt ist       */
    #sb-toggle {
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      min-width: 32px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
      color: rgba(255,255,255,.6);
      transition: color .2s;
    }
    #sb-toggle:hover { color: #fff; }
    #sb-toggle span {
      display: block;
      width: 20px; height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform .25s, opacity .25s;
    }
    /* Hamburger → X wenn offen */
    #sidebar:not(.closed) #sb-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    #sidebar:not(.closed) #sb-toggle span:nth-child(2) { opacity: 0; }
    #sidebar:not(.closed) #sb-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Nav-Links */
    .sb-nav {
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 8px 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,.1) transparent;
    }
    .sb-group {
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.25);
      padding: 12px 18px 3px;
      white-space: nowrap;
      overflow: hidden;
      transition: opacity .2s;
    }
    #sidebar.closed .sb-group { opacity: 0; }

    .sb-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      color: rgba(255,255,255,.55);
      font-size: 13px;
      white-space: nowrap;
      cursor: pointer;
      border-left: 2px solid transparent;
      transition: color .2s, background .2s;
      user-select: none;
    }
    .sb-link:hover { color: #fff; background: rgba(255,255,255,.05); }
    .sb-link.active { color: #fff; border-left-color: var(--accent); background: rgba(91,127,166,.12); }
    .sb-icon { width: 26px; text-align: center; font-size: 15px; flex-shrink: 0; }
    .sb-label { overflow: hidden; transition: opacity .2s, max-width .3s; max-width: 170px; }
    #sidebar.closed .sb-label { opacity: 0; max-width: 0; }

    /* Social Icons im Footer der Sidebar */
    .sb-foot {
      padding: 10px 14px;
      border-top: 1px solid rgba(255,255,255,.07);
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .sb-social {
      width: 26px; height: 26px;
      border-radius: 6px;
      background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5);
      font-size: 12px;
      flex-shrink: 0;
      transition: background .2s, color .2s;
    }
    .sb-social:hover { background: var(--accent); color: #fff; }

    /* ═══════════════════════════════════════════════════════════
       HAUPTINHALT
    ═══════════════════════════════════════════════════════════ */
    #main {
      padding-top: 44px; /* = ssn-topbar height */
    }

    /* ═══════════════════════════════════════════════════════════
       PARALLAX SECTIONS
       data-bg="images/xxx.jpg" → wird per JS verarbeitet
       background-attachment: fixed = CSS-Parallax-Effekt
       Das ::before-Overlay macht Text lesbar
    ═══════════════════════════════════════════════════════════ */
    .parallax {
      position: relative;
      background-size: cover;
      background-position: center 50%;
      background-attachment: fixed;
      background-repeat: no-repeat;
    }
    .parallax::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(14, 20, 33, .72);
      z-index: 0;
    }
    .parallax > * { position: relative; z-index: 1; }

    /* ═══════════════════════════════════════════════════════════
       SECTION LAYOUT
    ═══════════════════════════════════════════════════════════ */
    .wrap { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
    .wrap-dark { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
    .eyebrow {
      font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
      color: var(--accent); font-weight: 500; display: block; margin-bottom: .4rem;
    }
    .parallax .eyebrow { color: var(--accent-lt); }
    .heading { font-size: 26px; font-weight: 500; margin-bottom: 2.5rem; }
    .parallax .heading { color: #fff; }
    .bg-alt { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

    /* ═══════════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════════ */
    #sec-home {
      min-height: 100vh;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: calc(44px + 4rem) 2rem 4rem;  /* Topbar-Höhe + Abstand, kein Abschneiden */
      color: #fff;
    }
    .hero-eyebrow {
      font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
      color: var(--accent-lt); margin-bottom: 1.4rem;
    }
    .hero-title {
      font-size: clamp(52px, 11vw, 100px);
      font-weight: 600; letter-spacing: .12em; line-height: 1;
      margin-bottom: 1.8rem;
    }
    .hero-div { width: 52px; height: 2px; background: var(--accent); margin: 0 auto 1.8rem; }
    .hero-sub {
      font-size: 16px; color: rgba(255,255,255,.6);
      max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.8;
    }
    .hero-tag {
      display: inline-block; font-size: 12px; padding: 6px 18px;
      border: 1px solid rgba(255,255,255,.2); border-radius: 99px;
      color: rgba(255,255,255,.6); letter-spacing: .06em; margin: 3px;
    }
    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
      color: rgba(255,255,255,.3); text-align: center;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(6px); }
    }

    /* ═══════════════════════════════════════════════════════════
       BIO
    ═══════════════════════════════════════════════════════════ */
    .bio-grid { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
    .bio-photo { width: 200px; height: 260px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
    .bio-photo img { width: 100%; height: 100%; object-fit: cover; }
    .bio-text p { color: var(--text-muted); margin-bottom: 1rem; }
    .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
    .tag { font-size: 12px; padding: 4px 12px; border: 1px solid var(--border); border-radius: 99px; color: var(--text-muted); background: var(--bg-page); }

    /* ═══════════════════════════════════════════════════════════
       EVENTS
    ═══════════════════════════════════════════════════════════ */
    .event-card {
      display: flex; align-items: center; gap: 1.5rem;
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 1rem 1.5rem;
      box-shadow: var(--shadow-sm); margin-bottom: 1rem;
      transition: box-shadow .2s, transform .2s;
    }
    .event-card:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
    .ev-date { text-align: center; min-width: 50px; border-right: 1px solid var(--border); padding-right: 1.5rem; }
    .ev-day  { font-size: 26px; font-weight: 600; color: var(--accent); line-height: 1; }
    .ev-mon  { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
    .ev-year { font-size: 10px; color: var(--text-muted); }
    .ev-info { flex: 1; }
    .ev-info h3 { font-size: 15px; font-weight: 500; }
    .ev-info p  { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
    .badge-past {
      font-size: 11px; padding: 4px 12px; border-radius: 99px; font-weight: 500;
      background: var(--bg-surface); color: var(--accent);
      border: 1px solid var(--border); white-space: nowrap;
      transition: background .15s, color .15s;
    }
    .badge-past:hover { background: var(--accent); color: #fff; }

    /* ═══════════════════════════════════════════════════════════
       GALERIE
    ═══════════════════════════════════════════════════════════ */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .gallery-item {
      border-radius: var(--radius); overflow: hidden;
      border: 1px solid var(--border); box-shadow: var(--shadow-sm);
      position: relative; cursor: pointer;
      transition: transform .25s, box-shadow .25s;
    }
    .gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
    .gallery-cap {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(14,20,33,.85));
      color: rgba(255,255,255,.9); font-size: 13px;
      padding: .75rem 1rem;
      transform: translateY(100%);
      transition: transform .25s;
    }
    .gallery-item:hover .gallery-cap { transform: translateY(0); }
    .gallery-cap strong { display: block; font-size: 14px; }

    /* ═══════════════════════════════════════════════════════════
       TECHNIK KARTEN
    ═══════════════════════════════════════════════════════════ */
    .tech-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
    .tech-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
    .tech-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .tech-img { height: 160px; overflow: hidden; }
    .tech-img img { width: 100%; height: 100%; object-fit: cover; }
    .tech-body { padding: 1.1rem 1.3rem; }
    .tech-body h3 { font-size: 15px; font-weight: 500; color: var(--accent); margin-bottom: .4rem; }
    .tech-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
    .tech-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: .6rem; }
    .tech-tag { font-size: 11px; padding: 2px 9px; border: 1px solid var(--border); border-radius: 99px; color: var(--text-muted); }

    /* ═══════════════════════════════════════════════════════════
       BLOG
    ═══════════════════════════════════════════════════════════ */
    .blog-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
    .blog-item { background: #fff; padding: 1.3rem 1.6rem; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .15s; display: flex; align-items: flex-start; gap: 1rem; }
    .blog-item:last-child { border-bottom: none; }
    .blog-item:hover { background: var(--bg-page); }
    .blog-cat { flex-shrink: 0; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 99px; margin-top: 2px; }
    .cat-music { background: #dde8f2; color: #3a5f80; }
    .cat-tech  { background: #e0eae0; color: #375537; }
    .cat-fpv   { background: #ede0ea; color: #5a3356; }
    .cat-funk  { background: #e8e5d8; color: #4a4218; }
    .blog-body h3 { font-size: 15px; font-weight: 500; margin-bottom: .3rem; }
    .blog-body p  { font-size: 13px; color: var(--text-muted); }
    .blog-meta { font-size: 11px; color: var(--accent); margin-bottom: .3rem; }

    /* ═══════════════════════════════════════════════════════════
       LINKS
    ═══════════════════════════════════════════════════════════ */
    .links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem; }
    .link-card {
      display: flex; align-items: center; gap: 1rem;
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: .9rem 1.2rem;
      box-shadow: var(--shadow-sm);
      transition: background .15s, transform .2s;
    }
    .link-card:hover { background: var(--bg-surface); transform: translateX(3px); }
    .link-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); flex-shrink: 0; }
    .link-name { font-size: 14px; font-weight: 500; }
    .link-desc { font-size: 12px; color: var(--text-muted); }

    /* ═══════════════════════════════════════════════════════════
       FUN CARDS
    ═══════════════════════════════════════════════════════════ */
    .fun-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
    .fun-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow-sm); }
    .fun-card h3 { font-size: 14px; font-weight: 500; color: var(--accent); margin-bottom: .5rem; }
    .fun-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

    /* ═══════════════════════════════════════════════════════════
       KONTAKT
    ═══════════════════════════════════════════════════════════ */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
    .contact-info p { color: var(--text-light); font-size: 15px; margin-bottom: 2rem; line-height: 1.8; }
    .social-list { display: flex; flex-direction: column; gap: .7rem; }
    .social-item { display: flex; align-items: center; gap: .7rem; color: var(--text-light); font-size: 14px; transition: color .2s; }
    .social-item:hover { color: #fff; }
    .s-icon { width: 32px; height: 32px; border-radius: 7px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 14px; }

    /* Formular */
    .cf { display: flex; flex-direction: column; gap: .85rem; }
    .cf-field { display: flex; flex-direction: column; gap: 3px; }
    .cf input, .cf textarea, .cf select {
      width: 100%; padding: 11px 14px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius); font-size: 14px;
      font-family: 'Inter', sans-serif; color: #fff; outline: none;
      transition: border-color .2s;
    }
    .cf input::placeholder, .cf textarea::placeholder { color: rgba(255,255,255,.3); }
    .cf select option { background: var(--bg-deep2); color: #fff; }
    .cf input:focus, .cf textarea:focus, .cf select:focus { border-color: var(--accent-lt); }
    .cf input.ok,    .cf textarea.ok,    .cf select.ok    { border-color: #5a9e5a; }
    .cf input.err,   .cf textarea.err,   .cf select.err   { border-color: #c05050; background: rgba(180,60,60,.08); }
    .cf textarea { min-height: 120px; resize: vertical; }
    .cf-hint { font-size: 12px; min-height: 15px; padding-left: 2px; }
    .cf-hint.err { color: #e07070; }
    .cf-hint.ok  { color: #70b870; }
    .cf-counter  { font-size: 11px; color: rgba(255,255,255,.3); text-align: right; }
    .cf-counter.warn { color: #e09050; }

    .form-error {
      background: rgba(180,60,60,.18); border: 1px solid rgba(200,80,80,.4);
      border-radius: var(--radius); padding: 12px 16px; font-size: 13px;
      color: #e8a0a0; line-height: 1.6;
    }
    .form-error ul { margin: 4px 0 0 16px; }
    .form-error li { margin-bottom: 2px; }
    .form-success {
      background: rgba(60,130,80,.18); border: 1px solid rgba(80,160,100,.4);
      border-radius: var(--radius); padding: 14px; font-size: 14px;
      color: #90d8a8; text-align: center; line-height: 1.7;
    }
    .form-success strong { display: block; font-size: 16px; margin-bottom: 4px; }

    .btn-send {
      align-self: flex-start; padding: 11px 28px;
      background: var(--accent); color: #fff; border: none;
      border-radius: var(--radius); font-size: 14px;
      font-family: 'Inter', sans-serif; font-weight: 500;
      cursor: pointer; letter-spacing: .04em;
      transition: background .2s, transform .15s;
    }
    .btn-send:hover { background: var(--accent-hover); transform: translateY(-1px); }
    .btn-send:disabled { opacity: .6; cursor: not-allowed; transform: none; }

    /* ═══════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════ */
    #footer {
      background: var(--bg-deep);
      border-top: 1px solid rgba(255,255,255,.06);
      text-align: center; padding: 2rem;
      font-size: 13px; color: var(--text-muted);
    }
    #footer a { color: var(--accent-lt); }
    #footer a:hover { color: #fff; }

    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════════ */
    @media (max-width: 860px) {
      .bio-grid    { grid-template-columns: 1fr; }
      .bio-photo   { width: 100%; height: 240px; }
      .gallery-grid{ grid-template-columns: repeat(2,1fr); }
      .tech-grid   { grid-template-columns: 1fr; }
      .fun-grid    { grid-template-columns: repeat(2,1fr); }
      .contact-grid{ grid-template-columns: 1fr; }
      .links-grid  { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      :root { --sb-open: var(--sb-closed); }
      .gallery-grid { grid-template-columns: 1fr; }
      .fun-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════════════════════
       MOBILE NAVIGATION
       Auf kleinen Screens (<768px):
       - Sidebar wird komplett ausgeblendet
       - Hamburger-Button oben links (fixed, über allem)
       - Mobile-Overlay-Menü klappt von links herein
    ═══════════════════════════════════════════════════════════ */

    /* Hamburger-Button – nur mobile sichtbar */
    #mobile-toggle {
      display: none;
      position: fixed;
      top: 8px;
      left: 12px;
      z-index: 2000;
      background: var(--accent);
      border: none;
      border-radius: 8px;
      padding: 8px 10px;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
    #mobile-toggle span {
      display: block;
      width: 22px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .25s, opacity .25s;
    }
    #mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #mobile-toggle.open span:nth-child(2) { opacity: 0; }
    #mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Overlay-Dimmer hinter dem Menü */
    #mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.55);
      z-index: 1400;
      opacity: 0;
      transition: opacity .3s;
    }
    #mobile-overlay.active {
      display: block;
      opacity: 1;
    }

    @media (max-width: 768px) {
      /* Body: kein Margin-Left mehr – Sidebar ist overlay */
      body, body.sb-closed {
        margin-left: 0 !important;
      }

      /* Banner: volle Breite auf Mobile */

      /* Sidebar: versteckt, per JS eingeblendet */
      #sidebar {
        width: var(--sb-open) !important;
        transform: translateX(-100%);
        transition: transform .3s ease, box-shadow .3s;
        box-shadow: none;
        top: 0;
      }
      #sidebar.mobile-open {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,.4);
      }

      /* Hamburger-Button einblenden */
      #mobile-toggle {
        display: flex;
      }

      /* Hero: kleinere Schrift */
      .hero-title { font-size: clamp(38px, 14vw, 62px); }
      .hero-sub   { font-size: 14px; }

      /* Sektionen: weniger Padding */
      .wrap, .wrap-dark { padding: 3rem 1.2rem; }

      /* Bio: immer einspaltig */
      .bio-grid {
        grid-template-columns: 1fr !important;
      }
      .bio-photo {
        width: 100% !important;
        height: 220px !important;
      }

      /* Galerie: 2 Spalten auf Mobile */
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

      /* Technik: einspaltig */
      .tech-grid { grid-template-columns: 1fr !important; }

      /* Fun: 2 Spalten */
      .fun-grid { grid-template-columns: repeat(2, 1fr) !important; }

      /* Links: einspaltig */
      .links-grid { grid-template-columns: 1fr !important; }

      /* Kontakt: einspaltig */
      .contact-grid { grid-template-columns: 1fr !important; }

      /* Events: kompakter */
      .event-card { padding: .8rem 1rem; gap: 1rem; }
      .ev-day     { font-size: 20px; }

      /* Blog: kein side-by-side */
      .blog-item  { flex-direction: column; gap: .5rem; }
      .blog-cat   { align-self: flex-start; }

      /* SoundCloud iframe Höhe reduzieren */
      #sec-music iframe { height: 280px !important; }

      /* Impressum auf Mobile */
      .impressum-grid { grid-template-columns: 1fr !important; }
    }

    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .fun-grid     { grid-template-columns: 1fr !important; }
      .hero-tag     { font-size: 11px; padding: 5px 12px; }
    }

    /* Touch-freundliche Tap-Targets */
    .sb-link    { min-height: 44px; }
    .link-card  { min-height: 52px; }
    .btn-send   { min-height: 44px; padding: 13px 28px; }

  
    /* [204] Header-Styling kommt jetzt zentral aus shared-nav.css (.ssn-topbar).
       Die frühere generische header{}-Regel hier überschrieb die zentrale
       Topbar (52px statt 44px, eigener Hintergrund) und wurde entfernt. */
    header .logo { font-weight: 800; letter-spacing: 1.5px; font-size: 17px; color: var(--text-main, #e8edf5); }
    header .logo span { color: var(--accent, #5b7fa6); }
    header .nav-links { display: flex; align-items: center; gap: .6rem; }
    body { padding-top: 44px; } /* = ssn-topbar height, bündig darunter */



  .set-tracklist { margin-top:.7rem; border-top:1px solid var(--border,rgba(255,255,255,.1)); padding-top:.6rem; }
  .set-tracklist summary { cursor:pointer; font-size:12.5px; color:#5b7fa6; font-weight:600; }
  .tl-list { list-style:none; margin:.6rem 0 0; padding:0; }
  .tl-list li { display:flex; gap:12px; padding:5px 0; font-size:13px; }
  .tl-time { color:#5b7fa6; font-variant-numeric:tabular-nums; font-family:monospace; flex-shrink:0; }
  .tl-name { color:rgba(255,255,255,.85); }
  html[data-theme="light"] .tl-name { color:#2a3242; }


        .set-archive { display: grid; gap: 1.4rem; margin-top: 1rem; }
        .set-card {
          background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
          border-radius: 16px; padding: 1.3rem 1.5rem;
        }
        .set-card-head {
          display: flex; align-items: flex-start; justify-content: space-between;
          gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap;
        }
        .set-title { font-size: 17px; color: #fff; margin-bottom: .25rem; }
        .set-meta { font-size: 12.5px; color: rgba(255,255,255,.55); }
        .set-play-btn {
          background: var(--accent); color: #fff; border: none;
          border-radius: 99px; padding: 8px 18px; font-size: 13px; font-weight: 600;
          cursor: pointer; white-space: nowrap; flex-shrink: 0;
          transition: background .15s, transform .15s;
        }
        .set-play-btn:hover { background: var(--accent-hover, #4a6d91); transform: translateY(-1px); }
        .set-embed { border-radius: 10px; overflow: hidden; }
      
/* [213] Logo-Variante je nach Design (hell/dunkel) */
.hero-logo-dark { display: none !important; }
.hero-logo-light { display: block !important; }
html[data-theme="light"] .hero-logo-light { display: none !important; }
html[data-theme="light"] .hero-logo-dark { display: block !important; }
