/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Assistant';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/assistant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Crimson Pro';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/crimson-pro-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Crimson Pro';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/crimson-pro-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

  :root {
    --blau: #4054B2;
    --blau-deep: #2A3A8C;
    --blau-light: #5B6DC7;
    --blau-soft: #EEF0F8;
    --gelb: #F1FF38;
    --gelb-hover: #d8e530;
    --weiss: #FFFFFF;
    --cream: #FAFBFF;
    --grau-100: #F4F5F9;
    --grau-200: #E2E4ED;
    --grau-500: #8B90A5;
    --grau-800: #2D2F3A;
    --text: #1A1B2E;
    --font-head: 'Assistant', sans-serif;
    --font-body: 'Crimson Pro', Georgia, serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--weiss);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ===== HEADER ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(64, 84, 178, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
  }

  .header.scrolled {
    background: var(--blau);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  }

  .header--solid,
  .header--solid.scrolled {
    background: var(--blau-deep) !important;
  }

  .header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .header-logo img {
    display: block;
    width: 240px;
    height: auto;
  }

  .header.scrolled .header-logo img {
    width: 200px;
  }

  .burger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
  }

  .burger span {
    display: block;
    height: 2.5px;
    background: var(--weiss);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100dvh;
    background: var(--blau-deep);
    z-index: 999;
    padding: 80px 32px 40px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu.open {
    right: 0;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--weiss);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
    transition: color 0.2s ease;
  }

  .mobile-menu a:active {
    color: var(--gelb);
  }

  .menu-social {
    margin-top: auto;
    display: flex;
    gap: 12px;
    padding-top: 24px;
  }

  .menu-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
  }

  /* ===== SOCIAL STRIP ===== */
  .social-strip {
    background: var(--blau-soft);
    padding: 28px 24px;
    text-align: center;
  }

  .social-strip-text {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
  }

  .social-strip-links {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .social-strip-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--blau);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 22px;
    background: var(--weiss);
    border: 1.5px solid var(--grau-200);
    transition: all 0.2s ease;
  }

  .social-strip-links a:active {
    border-color: var(--blau);
    background: var(--blau);
    color: var(--weiss);
  }

  /* ===== SOCIAL SECTION ===== */
  .social-section {
    text-align: center;
  }

  .social-section .reveal {
    max-width: 640px;
    margin: 0 auto;
  }

  .social-section .section-text {
    margin-left: auto;
    margin-right: auto;
  }

  .social-section .social-strip-links {
    margin-top: 20px;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 24px 48px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--blau-deep);
  }

  .hero-bg video,
  .hero-bg .hero-img-mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Mobile: Bild statt Video (spart Datenvolumen) */
  .hero-bg .hero-video { display: none; }
  .hero-bg .hero-img-mobile { display: block; }

  /* Gradient overlay über dem Video */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, 0.45) 0,
        rgba(0, 0, 0, 0) 120px,
        rgba(26, 27, 46, 0.15) 45%,
        rgba(42, 58, 140, 0.75) 68%,
        rgba(42, 58, 140, 0.95) 100%
      );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    color: var(--weiss);
    animation: hero-in 0.8s ease forwards;
  }

  @keyframes hero-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-label {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.75;
    margin-bottom: 12px;
  }

  .hero-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 6px;
  }

  .hero-date {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--gelb);
    margin-bottom: 28px;
  }

  .hero-cta {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--blau-deep);
    background: var(--gelb);
    padding: 14px 32px;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
  }

  .hero-cta:active {
    transform: scale(0.96);
    background: var(--gelb-hover);
  }

  .hero-scroll {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
  }

  .hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255,255,255,0.4);
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ===== SECTIONS ===== */
  section {
    padding: 56px 24px;
  }

  .section-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blau);
    margin-bottom: 10px;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    color: #2A3A8C;
    margin-bottom: 16px;
  }

  .section-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.55;
    color: var(--grau-800);
    max-width: 560px;
  }

  .intro .section-text {
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== INTRO SECTION ===== */
  .intro {
    background: var(--cream);
    text-align: center;
    position: relative;
  }

  /* ===== HIGHLIGHT CARDS ===== */
  .highlights {
    background: var(--weiss);
  }

  .cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
  }

  .card:active {
    border-color: var(--blau);
    transform: scale(0.98);
  }

  .card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-icon-food,
  .card-icon-craft,
  .card-icon-music,
  .card-icon-kids,
  .card-icon-social { background: rgba(241, 255, 56, 0.4); }

  .card-icon svg { stroke: #4054B2; }

  .card-content {
    flex: 1;
  }

  .card-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
  }

  .card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--grau-500);
    line-height: 1.4;
  }

  .card-arrow {
    flex-shrink: 0;
    align-self: center;
    color: var(--grau-500);
    font-size: 18px;
  }

  /* ===== IMAGE STRIP ===== */
  .image-strip-wrap {
    position: relative;
  }

  .image-strip-wrap::before,
  .image-strip-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .image-strip-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.10), transparent);
  }

  .image-strip-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.10), transparent);
  }

  .image-strip-wrap.at-start::before { opacity: 0; }
  .image-strip-wrap.at-end::after    { opacity: 0; }

  .image-strip {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    gap: 4px;
    cursor: grab;
    user-select: none;
  }

  .image-strip::-webkit-scrollbar { display: none; }

  .strip-img {
    flex-shrink: 0;
    width: 200px;
    height: 260px;
    border-radius: 0;
    overflow: hidden;
    object-fit: cover;
    background: linear-gradient(135deg, var(--blau-soft) 0%, var(--grau-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 11px;
    color: var(--grau-500);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ===== PHOTO GRID ===== */
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .photo-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }

  @media (min-width: 768px) {
    .photo-grid { grid-template-columns: repeat(4, 1fr); }
  }

  /* ===== VEEDEL ROCKT ===== */
  .veedel-rockt {
    background: var(--blau);
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .veedel-rockt::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(241,255,56,0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 40%);
  }

  .rockt-text {
    position: relative;
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--weiss);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .rockt-highlight {
    color: var(--gelb);
  }

  .rockt-sub {
    position: relative;
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
  }

  /* ===== ANFAHRT ===== */
  .anfahrt {
    background: var(--cream);
  }

  .map-embed {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
  }

  .map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--weiss);
    background: var(--blau);
    text-decoration: none;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .map-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 3s ease-in-out infinite;
  }

  @keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
  }

  .map-link:active {
    transform: scale(0.96);
    background: var(--blau-deep);
  }

  .anfahrt-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .anfahrt-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .anfahrt-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blau);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .anfahrt-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--grau-800);
  }

  .anfahrt-text strong {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text);
  }

  /* ===== PARTNER ===== */
  .partner {
    background: var(--weiss);
    text-align: center;
  }

  .partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6rem;
    margin-top: 3rem;
  }

  .partner-logo {
    display: flex;
    align-items: center;
  }

  .partner-logo img {
    height: 110px;
    width: auto;
    opacity: 0.8;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .partner-logo img:hover {
    transform: scale(1.05);
    opacity: 1;
  }

  .partner-logo img[src*="reissdorf"] {
    height: 120px;
  }

  .partner-logo img[src*="rausgegangen"] {
    height: 90px;
  }

  .partner-logo img[src*="cologne"] {
    height: 70px;
  }

  /* ===== ABSCHLUSS ===== */
  .closing {
    padding: 72px 24px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .closing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #2A3A8C);
    z-index: 3;
    pointer-events: none;
  }

  .closing-bg {
    position: absolute;
    inset: 0;
    background: url('/img/suedstadtfest-koeln-menschenmenge-freien-07.webp') center / cover no-repeat fixed;
  }

  .closing-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 58, 140, 0.75);
  }

  .closing-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: 11px;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    z-index: 1;
  }

  .closing-content {
    position: relative;
    z-index: 2;
  }

  @keyframes breathe {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
  }

  .closing-date {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gelb);
    margin-bottom: 12px;
    animation: breathe 3s ease-in-out infinite;
  }

  .closing-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--weiss);
    line-height: 1.15;
    margin-bottom: 28px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  }

  .closing-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gelb);
    color: #1A1A2E;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .closing-cta:hover {
    background: #E0EE2D;
    transform: translateY(-2px);
  }

  .closing-social {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .closing-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--weiss);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
  }

  .closing-social a:active {
    background: rgba(255,255,255,0.28);
  }

  /* ===== MOBILE: Alle Sektions-Texte zentriert ===== */
  .section-label,
  .section-title,
  .section-text,
  .content-link {
    text-align: center;
  }

  /* Fließtext-Seiten (impressum, datenschutz, presse, kontakt) immer linksbündig */
  .content-section .section-text {
    text-align: left;
  }

  /* ===== ANIMATIONS ===== */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ===== DESKTOP NAV (hidden on mobile) ===== */
  .desktop-nav {
    display: none;
  }

  .header-social-desktop {
    display: none;
  }

  /* ===== CONTENT SECTIONS (Photo + Text) ===== */
  .content-section {
    background: var(--weiss);
  }

  .content-section.alt-bg {
    background: var(--cream);
  }

  .content-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .content-block-reverse {
    flex-direction: column;
  }

  .content-media {
    border-radius: 16px;
    overflow: hidden;
  }

  .content-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--blau-soft) 0%, var(--grau-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 12px;
    color: var(--grau-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 16px;
  }

  .content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .content-text .section-text {
    margin-top: 12px;
  }

  .content-text .section-text:first-of-type {
    margin-top: 4px;
  }

  .content-link {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--blau);
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.2s ease;
  }

  .partner-text {
    margin: 16px auto 0;
    max-width: 640px;
  }

  /* ===== MINI GALLERIES ===== */
  .mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
  }

  .mini-gallery:has(.mini-img:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
  }

  .mini-img {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blau-soft) 0%, var(--grau-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 10px;
    color: var(--grau-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ===== FAQ ===== */
  .faq {
    background: var(--cream);
  }

  .faq-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .faq-item {
    background: var(--weiss);
    border-radius: 12px;
    border: 1.5px solid var(--grau-200);
    overflow: hidden;
    transition: border-color 0.2s ease;
  }

  .faq-item[open] {
    border-color: var(--blau-light);
  }

  .faq-question {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .faq-question::-webkit-details-marker { display: none; }

  .faq-question::after {
    content: '+';
    flex-shrink: 0;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 400;
    color: var(--blau);
    transition: transform 0.2s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-question::after {
    content: '−';
  }

  .faq-answer {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--grau-800);
    padding: 0 20px 18px;
  }

  /* ===== COUNTDOWN ===== */
  .hero-countdown {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    min-height: 22px;
  }

  .hero-countdown:empty {
    display: none;
  }

  /* ===== RESPONSIVE — TABLET (768px+) ===== */
  @media (min-width: 768px) {
    section {
      padding: 72px 40px;
    }

    .header {
      padding: 16px 32px;
    }

    .hero {
      padding: 0 40px 64px;
    }

    .hero-title {
      font-size: 60px;
    }

    .hero-date {
      font-size: 26px;
    }

    .hero-sub {
      font-size: 22px;
    }

    .section-title {
      font-size: 34px;
    }

    .section-text {
      font-size: 19px;
      max-width: 640px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .card {
      flex-direction: column;
      text-align: center;
      padding: 28px 24px;
    }

    .card-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto;
    }

    .card-icon svg {
      width: 30px;
      height: 30px;
    }

    .card-arrow {
      display: none;
    }

    .strip-img {
      width: 260px;
      height: 320px;
    }

    .rockt-text {
      font-size: 48px;
    }

    .rockt-sub {
      font-size: 20px;
      max-width: 500px;
    }

    .map-embed {
      height: 300px;
    }

    .anfahrt-info {
      flex-direction: row;
      gap: 24px;
    }

    .anfahrt-item {
      flex: 1;
    }

    .partner-logos {
      gap: 6rem;
    }

    .faq-list {
      gap: 10px;
    }

    .faq-question {
      font-size: 17px;
      padding: 20px 24px;
    }

    .faq-answer {
      padding: 0 24px 20px;
      font-size: 17px;
    }

    .closing-title {
      font-size: 4rem;
    }

  }

  /* ===== RESPONSIVE — DESKTOP (1024px+) ===== */
  @media (min-width: 1024px) {
    /* Desktop: Video statt Bild */
    .hero-bg .hero-video { display: block; }
    .hero-bg .hero-img-mobile { display: none; }

    /* Show desktop nav, hide burger */
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .desktop-nav a {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    .desktop-nav a:hover {
      color: var(--gelb);
    }

    .header-social-desktop {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 8px;
    }

    .header-social-desktop a {
      color: rgba(255,255,255,0.6);
      transition: color 0.2s ease;
    }

    .header-social-desktop a:hover {
      color: var(--gelb);
    }

    .burger {
      display: none;
    }

    .header {
      padding: 14px 48px;
    }

    .header.scrolled {
      padding: 10px 48px;
    }

    /* Reset section text to left on desktop (grid/side-by-side layouts) */
    .content-section .section-label,
    .content-section .section-title,
    .content-section .section-text,
    .content-section .content-link {
      text-align: left;
    }

    /* Container max-widths */
    section {
      padding: 88px 48px;
    }

    .highlights,
    .anfahrt,
    .partner,
    .faq {
      padding-left: calc((100% - 1100px) / 2);
      padding-right: calc((100% - 1100px) / 2);
    }

    @supports (padding: max(0px)) {
      .highlights,
      .anfahrt,
      .partner,
      .faq {
        padding-left: max(48px, calc((100% - 1100px) / 2));
        padding-right: max(48px, calc((100% - 1100px) / 2));
      }
    }

    /* Hero */
    .hero {
      padding: 0 80px 80px;
      justify-content: center;
      align-items: flex-start;
      min-height: 100dvh;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero-title {
      font-size: 76px;
    }

    .hero-date {
      font-size: 30px;
    }

    .hero-sub {
      font-size: 24px;
    }

    .hero-cta {
      font-size: 17px;
      padding: 16px 36px;
    }

    .hero-cta:hover {
      transform: translateY(-2px);
      background: var(--gelb-hover);
      box-shadow: 0 6px 24px rgba(241,255,56,0.3);
    }

    /* Intro — centered text on desktop */
    .intro .reveal {
      max-width: 760px;
      margin: 0 auto;
    }

    .intro::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(to bottom, transparent, var(--cream));
      pointer-events: none;
    }

    .section-text {
      max-width: 700px;
    }

    /* Highlight cards — hover states */
    .card:hover {
      border-color: var(--blau);
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(64,84,178,0.12);
    }

    .card-desc {
      font-size: 16px;
    }

    /* Veedel Rockt */
    .veedel-rockt {
      padding: 96px 48px;
    }

    .rockt-text {
      font-size: 56px;
    }

    .rockt-sub {
      font-size: 21px;
      max-width: 560px;
    }

    /* Anfahrt — text left-aligned on desktop */
    .anfahrt .section-label,
    .anfahrt .section-title,
    .anfahrt .section-text {
      text-align: left;
    }

    /* Anfahrt — info left, map right on desktop */
    .anfahrt {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 48px;
    }

    .anfahrt > .reveal:first-child {
      grid-column: 1;
      grid-row: 1;
    }

    .anfahrt > .map-embed {
      grid-column: 2;
      grid-row: 1 / span 3;
      align-self: start;
    }

    .anfahrt > .anfahrt-info {
      grid-column: 1;
      grid-row: 2;
    }

    .anfahrt > .map-link {
      grid-column: 1;
      grid-row: 3;
      align-self: start;
    }

    .map-embed {
      height: 360px;
      margin-top: 28px;
    }

    /* FAQ — two columns on large screens */
    .faq-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    /* Content sections — side by side */
    .content-section {
      padding-left: max(48px, calc((100% - 1100px) / 2));
      padding-right: max(48px, calc((100% - 1100px) / 2));
    }

    .content-block {
      flex-direction: row;
      gap: 48px;
      align-items: center;
    }

    .content-block-reverse {
      flex-direction: row-reverse;
    }

    .content-media {
      flex: 1;
      min-width: 0;
    }

    .content-text {
      flex: 1;
      min-width: 0;
    }

    .content-link:hover {
      color: var(--blau-deep);
    }

    .mini-gallery {
      margin-top: 32px;
      gap: 12px;
    }

    .mini-img {
      border-radius: 12px;
      transition: transform 0.2s ease;
    }

    .mini-img:hover {
      transform: scale(1.03);
    }

    .content-centered {
      max-width: 700px;
      text-align: center;
    }

    /* Social strip */
    .social-strip-links a:hover {
      border-color: var(--blau);
      background: var(--blau);
      color: var(--weiss);
    }

    /* Map link hover */
    .map-link:hover {
      transform: translateY(-2px);
      background: var(--blau-deep);
      box-shadow: 0 4px 16px rgba(42,58,140,0.3);
    }

    /* Closing */
    .closing-title {
      font-size: 5rem;
    }
  }

  /* ===== RESPONSIVE — WIDE (1280px+) ===== */
  @media (min-width: 1280px) {
    .hero-title {
      font-size: 88px;
    }

    .hero {
      padding: 0 120px 100px;
    }

    .section-title {
      font-size: 38px;
    }

    .rockt-text {
      font-size: 64px;
    }

    .closing-title {
      font-size: 5rem;
    }
  }

/* ===== MARQUEE ===== */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.marquee-wrap {
  background: var(--gelb);
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mq-link {
  color: var(--blau-deep);
  text-decoration: none;
}

.mq-link:hover {
  text-decoration: underline;
}

.mq-sep {
  padding: 0 2em;
  color: var(--blau-deep);
}

.mq-date {
  color: var(--blau-deep);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blau-deep);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-row-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 24px 0;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin: 0;
}


.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon:hover::before {
  opacity: 1;
  transform: scale(1);
}

.social-icon:hover {
  transform: scale(1.15);
}

.social-icon.instagram::before {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook::before {
  background: #1877F2;
}

.social-icon svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.3s ease, filter 0.3s ease;
}

.social-icon:hover svg {
  fill: white;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-inline: 24px;
}

.footer-row-2 {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  padding: 0 24px 28px;
  gap: 16px;
  margin-top: auto;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 8px 16px;
  align-items: center;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: var(--gelb);
}

.footer-dot {
  display: none;
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
}

.footer-orga {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-orga-rw {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-orga-abc {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-orga a:hover img {
  opacity: 1;
}

@media (min-width: 768px) {
  .footer-row-1 {
    padding: 40px 32px 0;
    gap: 20px;
  }

  .footer-row-2 {
    margin-top: auto;
  }
}

@media (min-width: 1024px) {
  .footer-row-1 {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    text-align: left;
    padding: 48px 48px 0;
    gap: 0 48px;
  }

  .footer-divider {
    margin-inline: 48px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-desc {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-orga {
    align-self: center;
  }

  .social-icons {
    justify-self: end;
    align-self: center;
  }

  .footer-row-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0 48px 28px;
    margin-top: auto;
  }

  .footer-legal {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px;
  }

  .footer-legal a {
    font-size: 17px;
    white-space: nowrap;
  }

  .footer-dot {
    display: inline;
  }
}

/* ===== MINI-IMG: Bild-Regel (ersetzt Inline-Styles) ===== */
.mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SUBPAGE: PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42,58,140,0.35) 0%, rgba(42,58,140,0.6) 60%, rgba(42,58,140,1) 100%);
}


.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--weiss);
  padding: 100px 24px 56px;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  opacity: 0.88;
}

.page-hero-label {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gelb);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Hero entrance animation */
.page-hero-label,
.page-hero-title,
.page-hero-sub {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s ease-out forwards;
}
.page-hero-label {
  animation: heroFadeUp 0.7s ease-out 0.2s forwards, heartbeat 2.5s ease-in-out 1.2s infinite;
}
.page-hero-title { animation-delay: 0.5s; }
.page-hero-sub   { animation-delay: 0.8s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartbeat {
  0%   { transform: scale(1); }
  7%   { transform: scale(1.06); }
  14%  { transform: scale(1); }
  21%  { transform: scale(1.1); }
  28%  { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
  50%       { text-shadow: 0 0 30px rgba(241,255,56,0.6), 0 0 60px rgba(241,255,56,0.2), 0 2px 8px rgba(0,0,0,0.3); }
}


@media (min-width: 768px) {
  .page-hero-title { font-size: 3.5rem; }
  .page-hero-sub   { font-size: 1.5rem; }
  .page-hero-label { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .page-hero-title { font-size: 4.5rem; }
  .page-hero-label { font-size: 2.5rem; }
}

/* ===== BENTO CARDS ===== */
.bento-section {
  padding: 80px 24px;
  text-align: center;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.bento-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 27, 46, 0.5);
  transition: background 0.6s ease;
}
.bento-card-front {
  position: relative;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-card-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.bento-card-back {
  position: absolute;
  inset: 6px;
  z-index: 3;
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transform: rotate(-8deg) scale(0.9);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-card-back .bento-card-title {
  color: var(--blau, #4054B2);
  text-shadow: none;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.bento-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 12px;
}
.bento-card-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blau, #4054B2);
}
.bento-card:hover {
  transform: rotate(-2deg) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.bento-card:hover .bento-card-bg {
  transform: scale(1.1);
}
.bento-card:hover .bento-card-overlay {
  background: rgba(26, 27, 46, 0.7);
}
.bento-card:hover .bento-card-front {
  opacity: 0;
  transform: scale(0.8);
}
.bento-card:hover .bento-card-back {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.bento-card::before {
  content: '+';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  border: 1.5px solid rgba(241, 255, 56, 0.5);
}
.bento-card:hover::before {
  opacity: 0;
}
/* Invertiertes Hover-Panel (navy statt weiß) */
.bento-card--navy .bento-card-back {
  background: rgba(42, 58, 140, 0.95);
}
.bento-card--navy .bento-card-back .bento-card-title {
  color: #fff;
}
.bento-card--navy .bento-card-back .bento-card-desc {
  color: rgba(255,255,255,0.85);
}
.bento-card--navy .bento-card-back .bento-card-link {
  color: var(--gelb, #F1FF38);
}
.bento-card--navy .bento-card-front {
  display: flex;
}
.bento-card--navy .bento-card-bg {
  opacity: 1;
  transform: none;
}
.bento-card--navy .bento-card-overlay {
  background: rgba(26, 27, 46, 0.5);
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .bento-card--equal {
    min-height: 300px;
  }
  .bento-card-title {
    font-size: 2rem;
  }
}
@media (hover: none) {
  .bento-card-back {
    display: none;
  }
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  padding: 80px 24px;
}
.content-block--light {
  background: var(--bg-light, #F8F8FF);
}
.content-block--navy {
  background: #2A3A8C;
}
.content-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.content-split-image {
  border-radius: 16px;
  overflow: hidden;
}
.content-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .content-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .content-split-image {
    height: 380px;
  }
  .content-split--reverse .content-split-text {
    order: 2;
  }
  .content-split--reverse .content-split-image {
    order: 1;
  }
}
.content-block--navy .content-split-image {
  box-shadow: 10px 10px 30px rgba(20, 28, 70, 0.8),
              -10px -10px 30px rgba(55, 75, 160, 0.4);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.info-card-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blau, #4054B2);
  margin-bottom: 4px;
}
.info-card-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-callout {
  border: 2px solid rgba(64, 84, 178, 0.3);
  animation: borderPulse 2.5s ease-in-out infinite;
}
@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(64, 84, 178, 0.3);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  50% {
    border-color: rgba(64, 84, 178, 0.7);
    box-shadow: 0 0 20px rgba(64, 84, 178, 0.3), 0 2px 12px rgba(0,0,0,0.06);
  }
}

/* ===== SUBPAGE: CTA GROUP ===== */
.page-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* ===== SUBPAGE: INTRO DARK VARIANT ===== */
.intro--dark {
  background: #2A3A8C;
  color: var(--weiss);
}
.intro--dark .section-title {
  color: var(--weiss);
  border-left: 4px solid var(--gelb, #F1FF38);
  padding-left: 16px;
}
.intro--dark .section-text {
  color: rgba(255,255,255,0.85);
}
.intro--dark .intro-image {
  box-shadow: 10px 10px 30px rgba(20, 28, 70, 0.8),
              -10px -10px 30px rgba(55, 75, 160, 0.4);
  border-radius: 16px;
}
.intro--dark::before {
  content: none;
}

/* ===== SUBPAGE: INTRO SPLIT ===== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.intro-text {
  order: 2;
}
.intro-text p + p { margin-top: 1.25rem; }
.intro-image {
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .intro-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  .intro-text  { order: 1; }
  .intro-image { order: 2; height: 460px; min-height: 420px; max-height: 520px; }
}

/* ===== INFO FAB ===== */
.info-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blau-deep, #2A3A8C);
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: grab;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.info-fab.is-open { opacity: 0; pointer-events: none; }
.info-fab.fab-hidden { opacity: 0; pointer-events: none; }
.fab-i {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  user-select: none;
}
.fab-card {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 280px;
  max-width: calc(100vw - 48px);
  border-radius: 16px;
  background: var(--blau-deep, #2A3A8C);
  color: #fff;
  z-index: 901;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.fab-card.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.info-card-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s;
}
.info-card-close:hover { color: #fff; }
.info-card-body { padding: 20px 20px 16px; }
.info-row {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-row:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.info-lbl {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.info-val {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}
.info-cta-wrap { text-align: center; margin-top: 14px; }
.info-card-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gelb, #F1FF38);
  color: var(--blau-deep, #2A3A8C);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.info-card-cta:hover { background: #E0EE2D; }

@media (max-width: 767px) {
  .info-fab { width: 36px; height: 36px; }
  .fab-i { font-size: 22px; }
}


/* ===== Bühnenprogramm: Ankündigungs-Section ===== */
.ssf-section--announcement {
  background: var(--cream);
  padding: 3rem 1.5rem 5rem;
  text-align: center;
}

.ssf-section--announcement .section-title {
  color: var(--blau-deep);
}

.announcement-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.announcement-divider {
  width: 60px;
  height: 4px;
  background: var(--blau-deep);
  margin: 2rem auto;
}

.announcement-follow-head {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blau-deep);
  margin-bottom: 1.25rem;
}

.ssf-btn-primary {
  display: inline-block;
  background: var(--gelb);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ssf-btn-primary:hover {
  background: var(--gelb-hover);
}

.ssf-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blau-deep);
  border: 2px solid var(--blau-deep);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.ssf-btn-outline:hover {
  background: var(--blau-deep);
  color: var(--weiss);
}

@media (min-width: 1024px) {
  .ssf-section--announcement {
    padding: 5rem 2rem 7rem;
  }
}


/* ===== Bühnenprogramm: Button-Override (Specificity) ===== */
.ssf-section--announcement .ssf-btn-primary {
  background: var(--gelb);
  color: var(--text);
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
}
.ssf-section--announcement .ssf-btn-primary:hover {
  background: var(--gelb-hover);
}

/* ===== Bühnenprogramm: Gallery Grid ===== */
.ssf-section--gallery {
  background: var(--cream);
  padding: 3rem 1.25rem;
}
.ssf-section--gallery h2 {
  font-family: var(--font-head);
  color: var(--blau-deep);
  text-align: center;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .ssf-section--gallery { padding: 4rem 2rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Bühnenprogramm: Timeline ===== */
.ssf-timeline {
  background: var(--blau-deep);
  padding: 4rem 0;
}

.tl-day {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem 0 2rem;
}
.tl-day + .tl-day {
  margin-top: 56px;
}

.tl-day__header {
  text-align: center;
  margin-bottom: 3rem;
}
.tl-day__label {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gelb);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.tl-day__title {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--weiss);
  margin: 0 0 1rem;
  line-height: 1.1;
}
.tl-day__rule {
  width: 60px;
  height: 3px;
  background: var(--gelb);
  margin: 0 auto;
  border-radius: 2px;
}

.tl-body {
  position: relative;
  padding-left: 90px;
}
.tl-body::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

.tl-divider {
  border: none;
  border-top: 1px dashed rgba(241,255,56,0.12);
  margin: 1rem 0;
}

.tl-act {
  position: relative;
  cursor: pointer;
  margin-bottom: 2px;
  border-radius: 8px;
  transition: background 0.2s;
}
.tl-act:hover {
  background: rgba(255,255,255,0.04);
}
.tl-act__dot {
  position: absolute;
  left: -59px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blau-light);
  border: 2px solid var(--blau-deep);
}
.tl-act__time {
  position: absolute;
  left: -115px;
  top: 17px;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gelb);
  white-space: nowrap;
  text-align: right;
  width: 48px;
  line-height: 1;
}
.tl-act__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 0.75rem 0;
}
.tl-act__name {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--weiss);
  line-height: 1.3;
  flex: 1;
}
.tl-act--medium .tl-act__name {
  font-size: 1.4375rem;
  font-weight: 800;
}
.tl-act__genre {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.tl-act__chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,0.35);
  transition: transform 0.3s, color 0.3s;
  line-height: 1;
  font-size: 1rem;
}
.tl-act.open .tl-act__chevron {
  transform: rotate(180deg);
  color: var(--gelb);
}

.tl-act__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.tl-act.open .tl-act__details {
  max-height: 400px;
  opacity: 1;
}
.tl-act__inner {
  display: flex;
  gap: 1.25rem;
  padding: 0 0.75rem 1rem;
  align-items: flex-start;
}
.tl-act__photo {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.tl-act__content {
  flex: 1;
}
.tl-act__genre-label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gelb);
  margin-bottom: 0.5rem;
}
.tl-act__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.tl-act__socials {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.tl-act__social-link {
  display: flex;
  align-items: center;
  color: var(--weiss);
  opacity: 0.45;
  transition: opacity 0.2s;
  text-decoration: none;
}
.tl-act__social-link:hover { opacity: 1; }
.tl-act__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.tl-breakout {
  position: relative;
  margin-top: 16px;
  margin-bottom: 0.5rem;
}
.tl-breakout__dot {
  position: absolute;
  left: -61px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gelb);
  border: 2px solid var(--blau-deep);
  box-shadow: 0 0 0 4px rgba(241,255,56,0.15);
}
.tl-breakout__time {
  position: absolute;
  left: -121px;
  top: 16px;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gelb);
  white-space: nowrap;
  text-align: right;
  width: 52px;
  line-height: 1;
}
.tl-breakout__card {
  border-radius: 12px;
  background: #1a1e3a;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
.tl-breakout__header {
  padding: 1rem 1.5rem 0.75rem;
}
.tl-breakout__photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 25%;
}
.tl-breakout__info {
  padding: 0.75rem 1.5rem 1.5rem;
}
.tl-breakout__badge {
  display: inline-block;
  background: var(--gelb);
  color: var(--blau-deep);
  font-family: var(--font-head);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
.tl-breakout__name {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--weiss);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.tl-breakout__genre {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.tl-breakout__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.tl-breakout__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tl-breakout__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--weiss);
  opacity: 0.5;
  transition: opacity 0.2s;
  text-decoration: none;
}
.tl-breakout__social-link:hover { opacity: 1; }
.tl-breakout__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

@media (max-width: 639px) {
  .tl-body { padding-left: 70px; }
  .tl-body::before { left: 28px; }
  .tl-act__dot { left: -46px; width: 8px; height: 8px; top: 22px; }
  .tl-breakout__dot { left: -49px; }
  .tl-act__time { left: -94px; font-size: 0.8125rem; width: 40px; }
  .tl-breakout__time { left: -97px; font-size: 0.8125rem; width: 40px; }
  .tl-act__genre { display: none; }
  .tl-act__photo { width: 100px; height: 100px; }
  .tl-breakout__photo { aspect-ratio: 16/9; }
  .tl-day__title { font-size: 2rem; }
  .tl-breakout__name { font-size: 1.5rem; }
}

@media (max-width: 639px) {
  .legal-page h1, .legal-page h2 { text-align: left; }
}
