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

    :root {
      --gold:    #D0B071;
      --gold-lt: #e8cc8a;
      --bg:      #1e2028;
      --text:    #D0B071;
      --white:   #f0ece0;
      --border:  rgba(208,176,113,0.35);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lora', Georgia, serif;
      background-color: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    /* ──────────────────────────────────────
       HINTERGRUND: Tapetenfoto + 30% Overlay
       → Lege "tapete.jpg" in denselben Ordner
         wie diese HTML-Datei.
       → Für WordPress: ersetze 'tapete.jpg'
         mit der URL aus der Mediathek.
    ────────────────────────────────────── */
    .pattern-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      background-image: var(--tapete-url);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .pattern-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
    }

    #app { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }
    #app > *:not(footer):not(.social-sidebar) { flex: 0 0 auto; }
    #app > footer { margin-top: auto; }

    /* ── HERO ── */
    .hero-frieda {
      position: relative;
      width: 100%;
      height: calc(100vh - 64px);
      min-height: 400px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent !important;
    }
    /* WordPress Admin-Leiste (32px) kompensieren */
    body.admin-bar .hero-frieda {
      height: calc(100vh - 64px - 32px);
    }
    body.admin-bar nav {
      top: 32px;
    }
    .hero-frieda-bg { display: none; }
    .hero-frieda-content {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(208,176,113,0.85);
      font-size: 2.8rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: arrowBounce 1.6s ease-in-out infinite;
      cursor: pointer;
    }
    @keyframes arrowBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity:0.85; }
      50%       { transform: translateX(-50%) translateY(8px); opacity:1; }
    }

    /* ── DIESES WOCHENENDE (Hero) ── */
    #hero-weekend {
      display: none;
      position: absolute;
      bottom: 90px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
      white-space: nowrap;
    }
    .weekend-label {
      display: block;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.55);
      margin-bottom: 12px;
    }
    .weekend-link {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .weekend-link:hover { opacity: 0.7; }
    .weekend-sep {
      color: rgba(208,176,113,0.4);
      font-size: 0.95rem;
      margin: 0 14px;
    }

    /* ── MOBILE SOCIAL BAR (nur auf Mobile sichtbar) ── */
    .mobile-social-bar { display: none; }

    /* ── SOCIAL SIDEBAR ── */
    .social-sidebar {
      position: fixed;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 500;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .social-sidebar .ss-line {
      width: 1px;
      height: 40px;
      background: rgba(208,176,113,0.4);
    }
    .social-sidebar a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      color: rgba(208,176,113,0.8);
      text-decoration: none;
      transition: color 0.2s, transform 0.18s;
    }
    .social-sidebar a:hover { color: #D0B071; transform: scale(1.2); }
    .social-sidebar svg { width: 18px; height: 18px; fill: currentColor; }

    /* Events container padding */
    .events-container {
      padding: 48px 48px 0;
    }

    /* ── BURGER BUTTON (mobile only) ── */
    .burger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 18px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      z-index: 200;
      position: relative;
    }
    .burger-btn span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--gold);
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(14, 15, 18, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
    }

    .nav-logo {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .nav-tagline {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.5);
      line-height: 1.5;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links li a {
      background: none;
      border: none;
      color: var(--gold);
      font-family: 'Lora', Georgia, serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      padding: 4px 0;
      border-bottom: 2px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      border-bottom-color: var(--gold);
      color: var(--gold-lt);
    }

    /* ── PAGES ── */
    /* WP: pages handled by templates */
    

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes arrowBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity:0.85; }
      50%       { transform: translateX(-50%) translateY(8px); opacity:1; }
    }

    /* ─────────────────────────
       HOME
    ───────────────────────── */
    .hero {
      padding: 60px 48px 80px;
      text-align: center;
    }
    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 4.5rem);
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1.05;
      color: var(--gold);
      text-shadow: 0 2px 30px rgba(0,0,0,0.6);
    }
    .hero p {
      margin-top: 16px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.65);
    }

    .section-label { text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 6px rgba(0,0,0,0.6);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 0 0 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ── EVENT GRID ── */
    .events-container {
      width: 840px;
      margin: 0 auto;
      display: block;
    }
    .events-grid,
    .events-weekend {
      display: grid;
      grid-template-columns: repeat(3, 260px);
      gap: 20px;
      padding-bottom: 20px;
    }
    .event-card-wrap {
      display: block;
      cursor: pointer;
      width: 260px;
      text-decoration: none;
      color: inherit;
    }
    .event-card {
      width: 260px;
      aspect-ratio: 4 / 5;
      height: auto;
      overflow: hidden;
      background: #111;
      position: relative;
      transition: transform 0.22s;
    }
    .event-card-wrap:hover .event-card { transform: scale(1.02); }
    .card-flyer {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
    }
    .card-flyer img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .event-caption {
      padding: 10px 2px 2px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .event-caption .cap-title {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .event-caption .cap-date {
      display: block;
      font-size: 0.74rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.8);
      white-space: nowrap;
    }
    .event-caption .cap-btn {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.8);
      white-space: nowrap;
    }

    .section-divider {
      height: 1px;
      background: var(--border);
      margin: 32px 48px 28px;
    }

    .card-flyer {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-flyer img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .card-overlay {
      display: none;
    }
    .card-date {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: var(--gold);
      text-transform: uppercase;
    }
    .card-title {
      font-size: 1rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.2;
    }
    .card-sub {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      color: rgba(208,176,113,0.55);
      text-transform: uppercase;
    }

    /* ─────────────────────────
       EVENT DETAIL
    ───────────────────────── */
    .event-detail { padding: 56px 48px 80px; max-width: 980px; margin: 0 auto; }

    .back-btn {
      background: none;
      border: 1px solid var(--border);
      color: var(--gold);
      font-family: 'Lora', Georgia, serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      padding: 10px 18px;
      margin-bottom: 44px;
      transition: background 0.2s, color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .back-btn:hover { background: var(--gold); color: var(--bg); }

    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 56px;
      align-items: start;
    }

    .detail-flyer-box {
      width: 100%;
      /* aspect-ratio entfernt: Bild bestimmt die Höhe, kein Beschneiden mehr */
      background: rgba(0,0,0,0.5);
      border: 1px solid var(--border);
      overflow: hidden;
      line-height: 0; /* verhindert Lücke unter dem Bild */
      color: rgba(208,176,113,0.2);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .detail-flyer-box img {
      width: 100%;
      height: auto;
      display: block;
    }

    .detail-info { display: flex; flex-direction: column; gap: 28px; }

    .detail-meta {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 6px rgba(0,0,0,0.6);
    }
    .detail-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.1;
      color: #e8d09a;
      text-shadow: 0 2px 28px rgba(0,0,0,0.9), 0 1px 8px rgba(0,0,0,0.7);
    }

    .info-block h3 {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .info-block p {
      font-size: 0.82rem;
      font-weight: 400;
      line-height: 1.75;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.75);
    }

    .lineup-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
    .lineup-list li {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #e8d09a;
      text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 6px rgba(0,0,0,0.6);
      padding: 3px 0;
      border-bottom: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .lineup-list li.lineup-header {
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.22em;
      color: var(--gold);
      opacity: 0.6;
      border-bottom: none;
      padding-bottom: 4px;
      padding-top: 4px;
    }
    .artist-sub {
      font-size: 0.7em;
      font-weight: 400;
      letter-spacing: 0.08em;
      opacity: 0.6;
      margin-left: 5px;
    }
    .lineup-list li .time {
      font-size: 0.65rem;
      font-weight: 400;
      color: var(--gold);
      letter-spacing: 0.1em;
    }

    .ticket-btn {
      display: block;
      text-align: center;
      background: var(--gold);
      color: var(--bg);
      font-family: 'Lora', Georgia, serif;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 16px 32px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .ticket-btn:hover { background: var(--gold-lt); }

    .detail-price {
      font-size: 0.82rem;
      color: rgba(208,176,113,0.85);
      letter-spacing: 0.06em;
      margin-bottom: 18px;
    }
    .detail-legi {
      display: block;
      font-size: 0.72rem;
      color: rgba(208,176,113,0.55);
      letter-spacing: 0.08em;
      margin-top: 4px;
    }
    .detail-soldout {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.5);
      border: 1px solid rgba(208,176,113,0.3);
      padding: 10px 24px;
      margin-bottom: 18px;
    }

    /* ─────────────────────────
       INNER PAGES
    ───────────────────────── */
    .inner-page {
      padding: 32px 48px 32px;
      max-width: 860px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .inner-page h1 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .lead-text {
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.85;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .body-text {
      font-size: 0.83rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.9;
      color: rgba(208,176,113,0.78);
      margin-bottom: 10px;
    }

    .aw-block { margin-bottom: 30px; }
    .aw-block h2 {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .aw-block p {
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.9;
      color: rgba(208,176,113,0.75);
    }

    /* FORM */
    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Lora', Georgia, serif;
      font-size: 0.83rem;
      letter-spacing: 0.06em;
      padding: 8px 2px;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group textarea { height: 58px; resize: none; }
    .form-group input:focus { border-bottom-color: var(--gold-lt); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(208,176,113,0.28); }
    .form-group textarea {
      min-height: 150px;
      resize: vertical;
      border: 1px solid var(--border);
      padding: 12px;
    }
    .form-group textarea:focus { border-color: var(--gold); }

    .submit-btn {
      width: 100%;
      background: var(--gold);
      color: var(--bg);
      font-family: 'Lora', Georgia, serif;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 11px;
      border: none;
      cursor: pointer;
      margin-top: 6px;
      transition: background 0.2s;
    }
    .submit-btn:hover { background: var(--gold-lt); }

    .success-msg {
      display: none;
      padding: 24px;
      border: 1px solid var(--gold);
      margin-top: 20px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ABOUT */
    .about-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 6px;
    }

    /* ── About Carousel ───────────────────────────────────── */
    .about-carousel {
      position: relative;
      margin-top: 48px;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }
    .ac-track {
      position: relative;
      width: 100%;
      height: 72vh;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ac-slide {
      display: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
    }
    .ac-slide.ac-active {
      display: flex;
    }
    .ac-slide img,
    .ac-slide video {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
      box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 2px 10px rgba(0,0,0,0.35);
    }
    .ac-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.45);
      border: 1px solid var(--border);
      color: var(--gold);
      font-size: 1.4rem;
      width: 44px;
      height: 44px;
      cursor: pointer;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s;
    }
    .ac-btn:hover { background: rgba(0,0,0,0.75); }
    .ac-prev { left: 10px; }
    .ac-next { right: 10px; }
    .ac-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 14px;
    }
    .ac-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      border: none;
      background: var(--border);
      cursor: pointer;
      padding: 0;
      transition: background 0.18s;
    }
    .ac-dot-active { background: var(--gold); }

    .divider { width: 100%; height: 1px; background: var(--border); margin: 40px 0; }

    .contact-row {
      display: flex;
      gap: 20px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      align-items: baseline;
    }
    .contact-row .lbl {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      min-width: 110px;
    }
    .contact-row .val {
      font-size: 0.8rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.78);
    }
    .contact-row a { color: inherit; text-decoration: none; }
    .contact-row a:hover { color: var(--gold-lt); }

    /* LEGAL PAGES */
    .legal-block {
      margin-bottom: 36px;
    }
    .legal-block h2 {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1px solid var(--border);
      padding-bottom: 8px;
      margin-bottom: 14px;
    }
    .legal-block p {
      font-size: 0.82rem;
      line-height: 1.75;
      color: rgba(208,176,113,0.7);
      margin-bottom: 10px;
    }
    .legal-block a { color: var(--gold); text-decoration: underline; }
    .legal-block a:hover { color: var(--gold-lt); }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.64rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(208,176,113,0.35);
    }
    .footer-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .footer-legal {
      display: flex;
      gap: 20px;
    }
    .footer-legal a {
      color: inherit;
      text-decoration: none;
      opacity: 0.7;
    }
    .footer-legal a:hover { opacity: 1; }

    /* ══════════════════════════════
       RESPONSIVE – MOBILE
       ══════════════════════════════ */
    @media (max-width: 760px) {

      /* ── Hintergrund: kein fixed auf iOS (sonst zoomed) ── */
      .pattern-bg {
        background-attachment: scroll;
        background-size: cover;
        background-position: center top;
      }

      /* ── Nav: show burger, hide links ── */
      nav { padding: 0 20px; }
      .burger-btn { display: flex; }
      .nav-tagline { font-size: 0.52rem; letter-spacing: 0.14em; line-height: 1.4; }

      /* Mobile: Nav-Links als Dropdown unter der Nav-Leiste */
      .nav-links {
        display: none !important;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(14, 15, 18, 0.80);
        border-bottom: 1px solid var(--border);
        flex-direction: column !important;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 28px 24px 32px;
        gap: 28px;
        z-index: 9999;
        list-style: none;
      }

      body.admin-bar .nav-links { top: 96px; }

      nav.menu-open .nav-links {
        display: flex !important;
        animation: menuSlideDown 0.22s ease;
      }

      @keyframes menuSlideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
      }

      /* Burger → X animation */
      nav.menu-open .burger-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      nav.menu-open .burger-btn span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }
      nav.menu-open .burger-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .nav-links li a {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        padding: 12px 0;
        border-bottom: none !important;
        text-decoration: none;
      }

      /* ── Mobile Social Bar: horizontal zwischen Hero und Events ── */
      .mobile-social-bar {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 28px;
        padding: 14px 20px;
      }
      .mobile-social-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(208,176,113,0.75);
        text-decoration: none;
        transition: color 0.2s, transform 0.18s;
      }
      .mobile-social-bar a:hover { color: var(--gold); transform: scale(1.2); }
      .mobile-social-bar svg { width: 22px; height: 22px; fill: currentColor; }

      /* ── Social sidebar: ausblenden ── */
      .social-sidebar { display: none !important; }

      /* ── Events: eine Spalte, 70% breit, zentriert ── */
      .events-container { width: 100%; padding: 24px 16px 0; box-sizing: border-box; }
      .section-label { font-size: 0.65rem; margin-bottom: 16px; }
      .events-grid, .events-weekend {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 28px;
      }
      .event-card-wrap { width: 70% !important; }
      .event-card { aspect-ratio: 4 / 5; height: auto; width: 100%; }

      /* ── Inner pages / Detail ── */
      .event-detail, .inner-page { padding: 20px 18px 40px; }
      /* Fundgrube: kompakter damit alles ohne scrollen passt */
      .inner-page h1 { font-size: 1.1rem; margin-bottom: 8px; }
      .inner-page .lead-text { font-size: 0.72rem; margin-bottom: 12px; }
      .inner-page .body-text { font-size: 0.72rem; margin-bottom: 10px; }
      .form-group { margin-bottom: 8px; }
      .form-group label { font-size: 0.6rem; margin-bottom: 4px; }
      .form-group input { padding: 5px 2px; font-size: 0.78rem; }
      .form-group textarea { min-height: 70px; padding: 8px; font-size: 0.78rem; }
      .submit-btn { padding: 9px; font-size: 0.75rem; }
      .detail-grid { grid-template-columns: 1fr; gap: 28px; }
      .about-cols { grid-template-columns: 1fr; gap: 28px; }
      .ac-track { height: 55vh; }
      .ac-btn { width: 36px; height: 36px; font-size: 1.1rem; }
      .ac-prev { left: 4px; }
      .ac-next { right: 4px; }

      /* ── Footer ── */
      footer { flex-direction: column; gap: 10px; padding: 20px; text-align: center; }
      .footer-right { flex-direction: column; gap: 6px; }
      .footer-legal { gap: 16px; }

      /* ── Hero ── */
      .hero-frieda { min-height: 320px; }
      .hero-frieda-content { align-items: flex-start; justify-content: center; padding-top: 60px; }
      .hero-bust { height: 60% !important; max-height: 336px !important; }
      .hero-scroll-hint { bottom: 160px; }
      #hero-weekend { bottom: 220px; white-space: normal; max-width: 90vw; }
      .weekend-sep { display: block; width: 0; overflow: hidden; margin: 0; color: transparent; font-size: 0; line-height: 6px; }
      .weekend-link { display: block; margin: 4px 0; }

      /* ── Single Event Seite ── */
      .detail-back { margin-bottom: 20px; }
      .detail-grid { display: flex; flex-direction: column; align-items: center; }
      .detail-flyer-box { width: 70%; }
      .detail-info { width: 100%; }
    }

    @media (max-width: 400px) {
      .event-card-wrap { width: 85% !important; }
    }