/* Bistro Seventy 77 Seven — Modernes Design */
:root {
  --bg: #0d0d0f;
  --bg-elev: #15151a;
  --bg-card: #1c1c22;
  --border: #2a2a32;
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --accent: #d4282c;       /* Dartboard-Rot */
  --accent-2: #1e7d3f;     /* Dartboard-Grün */
  --gold: #f5c542;         /* Bullseye-Highlight */
  --cream: #f1e6c8;        /* Dartboard-Beige */
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-name { line-height: 1.1; }
.brand-name small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--text);
  cursor: pointer; font-size: 1.4rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 70% 50%, rgba(212, 40, 44, 0.18), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(30, 125, 63, 0.12), transparent 55%),
              var(--bg);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.hero h1 .accent { color: var(--accent); }
.hero h1 .gold { color: var(--gold); }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
}

.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: #b81f23;
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--text-dim);
  color: var(--text);
}

/* Native <select>-Dropdown-Optionen: das geöffnete Dropdown rendert
   browser-nativ mit weißem Hintergrund. Wenn die Site einen dunklen
   Theme + weiße Schrift hat, vererbt sich die weiße Schrift in das
   Dropdown → weiß auf weiß. Mit explizitem dunklen Background +
   heller Schrift wird das Dropdown konsistent zum Site-Design. */
select option {
  background: #1a1a1f;
  color: #f1f1f1;
}
select option:checked,
select option:hover {
  background: #2a2a32;
  color: var(--gold, #f5c542);
}

/* Date- und Time-Picker-Icons aufhellen — sonst sind sie auf dem
   dunklen Theme unsichtbar. Wirkt nur in Chromium/Webkit; Firefox hat
   das Problem nicht. Filter = invert + leichtes Abdunkeln zu Gold. */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
select::-webkit-calendar-picker-indicator {
  filter: invert(0.85) hue-rotate(30deg);
  cursor: pointer;
  opacity: 0.85;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}


.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-meta-item small {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-meta-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* Öffnungszeiten-Block — eigene Sektion direkt unter dem Hero */
.oz-card {
  background: linear-gradient(135deg, rgba(245,197,66,0.06), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 2.4rem 2.6rem;
}
.oz-card .oz-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}
.oz-card .oz-head h2 {
  font-size: 1.9rem;
  margin: 0.4rem 0 0.6rem;
  line-height: 1.1;
}
.oz-card .oz-lead {
  color: var(--text-dim);
  margin: 0;
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.55;
}
.oz-card .oz-today { align-self: end; }
.oz-pill {
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.oz-pill.is-open {
  background: rgba(30,125,63,0.18);
  color: #4cca7a;
  border: 1px solid rgba(30,125,63,0.45);
}
.oz-pill.is-closed {
  background: rgba(212,40,44,0.15);
  color: var(--accent);
  border: 1px solid rgba(212,40,44,0.40);
}
.oz-card .oz-closures:not(:empty) { margin-bottom: 1.2rem; }
.oz-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  column-gap: 3rem;
  row-gap: 0;
}
.oz-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 1.05rem;
}
/* Letztes Item der linken Spalte (Freitag = 5) und letztes Item überall (Sonntag = 7) */
.oz-list li:nth-child(5),
.oz-list li:last-child { border-bottom: none; }
.oz-list .hh-day {
  color: var(--text);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.oz-list .hh-time { color: var(--text); font-weight: 700; }
.oz-list .hh-closed { color: var(--text-dim); font-style: italic; font-weight: 500; }
.oz-list li.is-today .hh-day,
.oz-list li.is-today .hh-time { color: var(--gold); font-weight: 800; }
.oz-list .hh-today-tag {
  background: var(--gold); color: #1a1108;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.oz-card .oz-hint {
  margin: 1.2rem 0 0;
  color: var(--gold);
  font-size: 0.95rem;
  display: none;
}
.oz-card .oz-hint:not(:empty) { display: block; }

@media (max-width: 800px) {
  .oz-card { padding: 1.6rem 1.4rem; }
  .oz-card .oz-head { grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
  .oz-card .oz-head h2 { font-size: 1.6rem; }
  .oz-list { grid-template-columns: 1fr; grid-auto-flow: row; column-gap: 0; }
  .oz-list li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .oz-list li:last-child { border-bottom: none; }
}


/* Dartboard */
.dartboard-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dartboard {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.55));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Sections */
section.section {
  padding: 5rem 1.5rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.section-head h2 .accent { color: var(--accent); }
.section-head p {
  color: var(--text-dim);
  font-size: 1.05rem;
}
.section-tag {
  color: var(--accent);
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

/* Feature Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all .25s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(212, 40, 44, 0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* Hours block */
.hours {
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list span:first-child { color: var(--text-dim); }
.hours-list span:last-child { font-weight: 600; }

/* Mannschaften */
.teams-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.team-league {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.team-league h3 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
}
.team-league h4 {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 1rem 0 0.4rem;
}
.team-league ul {
  list-style: none;
  margin-bottom: 0.5rem;
}
.team-league li {
  padding: 0.35rem 0;
  font-weight: 500;
  font-size: 0.95rem;
}
.team-league li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.7rem;
  vertical-align: middle;
  box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 3px var(--gold);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.contact-row {
  display: flex;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .label {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-width: 90px;
  padding-top: 0.15rem;
}
.contact-row .value { font-weight: 500; }
.contact-row a { color: var(--text); border-bottom: 1px dashed var(--gold); }
.contact-row a:hover { color: var(--gold); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, var(--accent), #8e1518);
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
}
.cta-strip h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.6rem;
  font-weight: 800;
}
.cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.cta-strip .btn-ghost {
  background: white;
  color: var(--accent);
  border-color: white;
  font-weight: 700;
}
.cta-strip .btn-ghost:hover { background: var(--bg); color: white; }

/* Footer */
footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 1.65rem 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-grid h4 {
  color: var(--text);
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-grid p, .footer-grid li {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.8;
}
.footer-grid ul { list-style: none; }
.footer-grid a { color: var(--text-dim); }
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Generic prose pages */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.prose h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  color: var(--gold);
}
.prose p, .prose ul { margin-bottom: 1rem; color: var(--text-dim); }
.prose ul { padding-left: 1.2rem; }

/* Responsive */
@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem;
  }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .dartboard-wrap { order: -1; }
  .dartboard { max-width: 320px; }

  .hours { grid-template-columns: 1fr; padding: 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ============ Erweiterungen: Spielplan, Hall of Fame, Galerie, Feiern, Sponsoren, Newsletter ============ */

/* Tabellen */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}
.data-table thead th {
  text-align: left;
  background: var(--bg-elev);
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--accent);
}
.data-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(212, 40, 44, 0.04); }
.data-table .num { text-align: center; font-variant-numeric: tabular-nums; }
.data-table .right { text-align: right; font-variant-numeric: tabular-nums; }
.data-table .badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-home { background: rgba(30,125,63,0.15); color: #4cca7a; }
.badge-away { background: rgba(212,40,44,0.15); color: #ff6b70; }
.badge-win  { background: rgba(245,197,66,0.15); color: var(--gold); }
.badge-rank-1 { background: var(--gold); color: #1a1410; }
.badge-rank-2 { background: #c0c0c0; color: #1a1410; }
.badge-rank-3 { background: #cd7f32; color: #1a1410; }

.table-wrap { overflow-x: auto; }
.table-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.table-title h3 {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}
.table-title small {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hall of Fame */
.hof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.hof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.hof-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(245,197,66,0.18), transparent 70%);
  pointer-events: none;
}
.hof-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.hof-score {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hof-score small {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-left: 0.4rem;
  font-weight: 600;
  vertical-align: middle;
  text-transform: uppercase;
}
.hof-player {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.hof-meta {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.hof-card.champion {
  background: linear-gradient(135deg, rgba(212,40,44,0.18), var(--bg-card));
  border-color: var(--accent);
}
.hof-card.champion .hof-score { color: var(--accent); }

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .25s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-bg svg { opacity: 0.4; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--text);
}
.gallery-caption strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.gallery-caption span {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Anfrage-Formular */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.feiern-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}
.feiern-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feiern-side .feature { padding: 1.4rem; }

/* Sponsoren */
.sponsors {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.sponsors-head {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  align-items: center;
}
.sponsor-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: all .2s;
}
.sponsor-tile:hover {
  color: var(--text);
  border-color: var(--gold);
}
.sponsor-tile small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.7;
}

/* Newsletter / Telegram CTA */
.subscribe {
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.subscribe h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.subscribe p { color: var(--text-dim); }
.subscribe-channels {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.channel-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all .2s;
  cursor: pointer;
}
.channel-btn:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.channel-btn .icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(212,40,44,0.12);
  color: var(--accent);
  flex-shrink: 0;
}
.channel-btn .icon.tg { background: rgba(34,158,217,0.12); color: #229ed9; }
.channel-btn strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}
.channel-btn span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

@media (max-width: 880px) {
  .feiern-grid { grid-template-columns: 1fr; }
  .subscribe { grid-template-columns: 1fr; padding: 1.8rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ───── Newsletter-Form (Landing „Bleib auf Empfang") ───── */
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}
.nl-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}
.nl-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.nl-input {
  flex: 1 1 auto;
  min-width: 0;                    /* erlaubt Schrumpfen unter intrinsische Breite */
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;                 /* >=16px → iOS verzichtet aufs Auto-Zoom */
}
.nl-btn { padding: 0.7rem 1.2rem; flex-shrink: 0; }
.nl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.nl-status { font-size: 0.85rem; margin: 0; display: none; }
.nl-hint { font-size: 0.78rem; color: var(--text-soft); margin: 0; }

@media (max-width: 540px) {
  /* Auf Phones: Input + Button gestapelt, beide volle Breite, weniger Padding
     in der Subscribe-Box, damit nichts mehr über den Rand schießt. */
  .subscribe { padding: 1.4rem; }
  .nl-row { flex-direction: column; }
  .nl-input, .nl-btn { width: 100%; }

  /* Grüne/rote „Jetzt geöffnet"-Pill auf Mobile kompakter + Umbruch erlaubt */
  .oz-pill {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    white-space: normal;
    max-width: 100%;
    line-height: 1.3;
  }
  .oz-card .oz-today { align-self: stretch; }
  .oz-card .oz-head { gap: 0.6rem; }
}
