/* Fun Entertain, Layout 2026
   Farben aus dem Logo gemessen. Keine fremden Hosts, keine externen Schriften. */

:root {
  --rot: #E30613;
  --rot-dunkel: #AB1917;
  --rot-hell: #FF2233;
  --anthrazit: #1C1F22;
  --anthrazit-hell: #262A2E;
  --grau: #3F4448;
  --grau-mittel: #6B7280;
  --grau-hell: #F4F5F7;
  --weiss: #FFFFFF;
  --rand: rgba(255,255,255,.10);
  --rand-hell: rgba(0,0,0,.08);
  --kopf-hoehe: 76px;
  --breite: 1240px;
  --radius: 14px;
  --schrift: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --schatten: 0 18px 50px rgba(0,0,0,.13);
  --ease: cubic-bezier(.22,.9,.28,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--schrift);
  background: var(--weiss);
  color: var(--anthrazit);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.huelle { width: min(100% - 44px, var(--breite)); margin-inline: auto; }
.nur-sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* Typografie */
h1, h2, h3 { line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.022em; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.95rem, 3.7vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { margin: 0 0 1.1em; }

.augen {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .79rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rot); margin-bottom: 1rem;
}
.augen::before { content: ""; width: 30px; height: 3px; background: var(--rot); border-radius: 2px; }
.dunkel .augen, .lounge .augen { color: var(--rot-hell); }
.dunkel .augen::before, .lounge .augen::before { background: var(--rot-hell); }

.vorspann { font-size: 1.13rem; color: var(--grau-mittel); max-width: 62ch; }
.dunkel .vorspann, .lounge .vorspann { color: rgba(255,255,255,.72); }

/* Schaltflaechen */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 100px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: all .28s var(--ease);
  font-family: inherit; white-space: nowrap;
}
.knopf-rot { background: var(--rot); color: #fff; box-shadow: 0 10px 28px rgba(227,6,19,.32); }
.knopf-rot:hover { background: var(--rot-hell); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(227,6,19,.44); }
.knopf-klar { border-color: rgba(255,255,255,.32); color: #fff; }
.knopf-klar:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-3px); }
.knopf-linie { border-color: var(--anthrazit); color: var(--anthrazit); }
.knopf-linie:hover { background: var(--anthrazit); color: #fff; transform: translateY(-3px); }

/* Kopfbereich */
.kopf {
  position: fixed; inset: 0 0 auto; height: var(--kopf-hoehe); z-index: 100;
  display: flex; align-items: center; transition: all .35s var(--ease);
  background: transparent;
}
/* Dunkler Verlauf, damit Logo und Navigation auf jedem Foto lesbar bleiben */
.kopf::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,11,13,.88) 0%, rgba(10,11,13,.55) 55%, rgba(10,11,13,0) 100%);
  height: calc(var(--kopf-hoehe) + 46px);
  transition: opacity .35s var(--ease);
}
.kopf.fest {
  background: rgba(20,22,25,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rand); height: 68px;
}
.kopf.fest::before { opacity: 0; }
.kopf .huelle { display: flex; align-items: center; gap: 2rem; }
.marke { display: flex; align-items: center; gap: .8rem; margin-right: auto; }
.marke img {
  height: 52px; width: auto; transition: height .35s var(--ease);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.65));
}
.kopf.fest .marke img { height: 42px; }

.nav { display: flex; gap: .3rem; align-items: center; }
.nav a {
  color: rgba(255,255,255,.88); font-weight: 600; font-size: .96rem;
  padding: .55rem .95rem; border-radius: 8px; position: relative; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .3rem; height: 2px;
  background: var(--rot); transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }

.sprachen { display: flex; gap: .1rem; margin-left: .5rem; }
.sprachen a {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.5); padding: .3rem .5rem; border-radius: 6px;
}
.sprachen a.aktiv { color: #fff; background: rgba(255,255,255,.13); }

.burger {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 26px; height: 2px; background: #fff; transition: all .3s var(--ease); }
.burger.auf span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.auf span:nth-child(2) { opacity: 0; }
.burger.auf span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Bildschirmfuellender Einstieg mit Foto */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--anthrazit); color: #fff; overflow: hidden;
  padding: calc(var(--kopf-hoehe) + 2rem) 0 4rem;
}
.hero-bild {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 62%; z-index: 0;
  animation: langsamHeran 26s ease-out forwards;
}
@keyframes langsamHeran {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(15,17,19,.95) 0%, rgba(15,17,19,.86) 42%, rgba(15,17,19,.42) 78%, rgba(15,17,19,.62) 100%),
    radial-gradient(820px 520px at 84% 22%, rgba(227,6,19,.30), transparent 64%);
}
.hero .huelle { position: relative; z-index: 2; }
.hero h1 { max-width: 15ch; text-wrap: balance; }
.hero h1 span { color: var(--rot); display: block; }
.hero .vorspann { font-size: 1.2rem; max-width: 52ch; margin-bottom: 2.3rem; color: rgba(255,255,255,.86); }
.hero-knoepfe { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Standortsuche, steht im hellen Bereich Standorte */
.finder {
  background: #fff; border: 1px solid var(--rand-hell); box-shadow: var(--schatten);
  border-radius: var(--radius); padding: 1.1rem; display: flex; gap: .8rem; flex-wrap: wrap;
  align-items: center; max-width: 720px; margin-bottom: 2.4rem;
}
.finder label { font-weight: 700; font-size: .9rem; padding-left: .6rem; }
.finder select {
  flex: 1 1 190px; padding: .85rem 1rem; border-radius: 10px; border: 1px solid rgba(0,0,0,.14);
  background: #fff; color: var(--anthrazit); font-family: inherit; font-size: 1rem; cursor: pointer;
}
.finder select:focus-visible { outline: 2px solid var(--rot); outline-offset: 2px; }

/* Zahlenband */
.zahlen { background: var(--rot); color: #fff; padding: 3.4rem 0; }
.zahlen-raster {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem; text-align: center;
}
.zahl { font-size: clamp(2.7rem, 5.2vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.zahl-text {
  font-size: .84rem; text-transform: uppercase; letter-spacing: .15em;
  opacity: .9; font-weight: 700; margin-top: .6rem;
}

/* Abschnitte */
.block { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.block-grau { background: var(--grau-hell); }
.dunkel { background: var(--anthrazit); color: #fff; }
.block-kopf { max-width: 760px; margin-bottom: 3.4rem; }

/* Standorte */
.filter { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.filter button {
  padding: .6rem 1.25rem; border-radius: 100px; border: 1.5px solid var(--rand-hell);
  background: #fff; font-family: inherit; font-size: .93rem; font-weight: 600;
  cursor: pointer; transition: all .25s var(--ease); color: var(--grau);
}
.filter button:hover { border-color: var(--rot); color: var(--rot); }
.filter button.aktiv { background: var(--anthrazit); border-color: var(--anthrazit); color: #fff; }

.standorte {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 1.3rem;
}
.karte {
  background: #fff; border: 1px solid var(--rand-hell); border-radius: var(--radius);
  padding: 1.7rem; transition: all .32s var(--ease); position: relative; overflow: hidden;
}
.karte::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--rot);
  transform: scaleY(0); transform-origin: bottom; transition: transform .32s var(--ease);
}
.karte:hover { transform: translateY(-6px); box-shadow: var(--schatten); border-color: transparent; }
.karte:hover::before { transform: scaleY(1); }
.karte-marke {
  display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; padding: .28rem .7rem; border-radius: 5px;
  background: var(--grau-hell); color: var(--grau); margin-bottom: .9rem;
}
.karte h3 { margin-bottom: .3rem; }
.karte-bezirk { color: var(--rot); font-weight: 700; font-size: .9rem; margin-bottom: .8rem; }
.karte-adresse { color: var(--grau-mittel); font-size: .97rem; margin: 0; }
.karte-hinweis {
  margin-top: 1rem; font-size: .82rem; color: var(--grau-mittel);
  border-top: 1px dashed var(--rand-hell); padding-top: .8rem;
}

/* Players Lounge */
.lounge {
  background:
    radial-gradient(880px 520px at 82% 18%, rgba(227,6,19,.34), transparent 62%),
    linear-gradient(160deg, #141719, #23272B);
  color: #fff; position: relative; overflow: hidden;
}
.lounge-raster {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.lounge-logo-bild { width: 210px; height: auto; margin-bottom: 1.6rem; }
.lounge-foto { width: 100%; height: auto; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.lounge-standort { margin-top: 1.6rem; color: rgba(255,255,255,.78); font-size: .98rem; }
.lounge-standort strong { color: #fff; }

.merkmale { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .9rem; }
.merkmale li { display: flex; gap: .9rem; align-items: flex-start; }
.merkmale li::before {
  content: ""; flex: 0 0 9px; height: 9px; border-radius: 50%;
  background: var(--rot-hell); margin-top: .55rem;
}
.merkmale strong { color: #fff; }
.merkmale-hell li::before { background: var(--rot); }
.merkmale-hell strong { color: var(--anthrazit); }

/* Preistafel der Lounge */
.preise {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .9rem; margin-top: 2rem;
}
.preis {
  border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,.05); display: grid; gap: .18rem;
}
.preis-wert { font-size: 1.7rem; font-weight: 800; color: var(--rot-hell); line-height: 1.1; }
.preis-was { font-weight: 700; font-size: .98rem; }
.preis-zusatz { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.45; }

/* Oeffnungszeiten der Lounge */
.zeiten {
  margin-top: 1.6rem; border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.6rem 1.7rem; background: rgba(0,0,0,.28);
}
.zeiten h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.zeit-zeile {
  display: flex; justify-content: space-between; gap: 1.2rem; padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07); font-size: .95rem;
}
.zeit-zeile:last-child { border-bottom: 0; }
.zeit-zeile span { color: rgba(255,255,255,.7); }

/* Sportwetten mit Foto */
.wetten-raster {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.wetten-foto { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--schatten); }

/* Sichtbarer Platzhalter statt erfundener Text */
.offen {
  border: 2px dashed rgba(227,6,19,.45); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; background: rgba(227,6,19,.05); font-size: .93rem;
  color: var(--grau); margin: 1.5rem 0 0;
}
.dunkel .offen, .lounge .offen { color: rgba(255,255,255,.8); background: rgba(227,6,19,.12); }
.offen b { color: var(--rot); }
.dunkel .offen b, .lounge .offen b { color: var(--rot-hell); }

/* Jobs */
.jobs-raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.3rem; }
.job {
  background: #fff; border-radius: var(--radius); padding: 1.9rem;
  border: 1px solid var(--rand-hell); display: flex; flex-direction: column;
  transition: all .32s var(--ease);
}
.job:hover { transform: translateY(-6px); box-shadow: var(--schatten); }
.job-art {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rot); margin-bottom: .8rem;
}
.job p { color: var(--grau-mittel); font-size: .97rem; }

.job-eck { display: flex; flex-wrap: wrap; gap: .5rem .7rem; align-items: center; margin-bottom: 1rem; }
.marker {
  display: inline-block; background: var(--rot); color: #fff; font-size: .74rem;
  font-weight: 800; letter-spacing: .05em; padding: .3rem .75rem; border-radius: 100px;
  text-transform: uppercase;
}
.job-ort { font-size: .87rem; color: var(--grau-mittel); }

.job-punkte { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: .55rem; flex: 1; }
.job-punkte li {
  position: relative; padding-left: 1.7rem; font-size: .94rem; color: var(--grau);
}
.job-punkte li::before {
  content: ""; position: absolute; left: 0; top: .42rem; width: 13px; height: 8px;
  border-left: 2.5px solid var(--rot); border-bottom: 2.5px solid var(--rot);
  transform: rotate(-45deg);
}

.job-mehr { margin-top: 1.3rem; border-top: 1px solid var(--rand-hell); padding-top: 1rem; }
.job-mehr summary {
  cursor: pointer; font-weight: 700; font-size: .93rem; color: var(--rot);
  list-style: none; display: flex; align-items: center; gap: .5rem;
}
.job-mehr summary::-webkit-details-marker { display: none; }
.job-mehr summary::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.job-mehr[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.job-mehr h4 { margin: 1.2rem 0 .5rem; font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; color: var(--anthrazit); }
.job-mehr ul { margin: 0; padding-left: 1.2rem; display: grid; gap: .4rem; }
.job-mehr li { font-size: .9rem; color: var(--grau-mittel); line-height: 1.55; }

.job-fuss { margin: 1.5rem 0 0; }
.job-hinweis {
  margin-top: 2.4rem; text-align: center; font-size: 1.02rem; color: var(--grau-mittel);
}
.job-hinweis a { color: var(--rot); font-weight: 700; border-bottom: 1px solid currentColor; }

/* Verantwortung */
.verantwortung { background: var(--anthrazit-hell); color: #fff; }
.pflicht {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem; margin-top: 2.5rem;
}
.pflicht div {
  border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.6rem;
  background: rgba(255,255,255,.04);
}
.pflicht strong { display: block; color: var(--rot-hell); margin-bottom: .5rem; font-size: 1.05rem; }
.pflicht p { font-size: .92rem; color: rgba(255,255,255,.72); margin: 0; }

/* Fussbereich */
.fuss { background: #0F1113; color: rgba(255,255,255,.62); padding: 4rem 0 2rem; font-size: .95rem; }
.fuss-raster { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.fuss h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .13em; margin: 0 0 1.1rem; }
.fuss ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.fuss a:hover { color: var(--rot-hell); }
.fuss-unten {
  border-top: 1px solid var(--rand); padding-top: 1.8rem; display: flex;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; font-size: .87rem;
}
.alter {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 2.5px solid var(--rot); color: var(--rot); font-weight: 800; font-size: .95rem; flex: 0 0 auto;
}

/* Auftauchen beim Scrollen */
.auf { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.auf.da { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .auf { opacity: 1; transform: none; }
}

/* Mobil */
@media (max-width: 980px) {
  .lounge-raster, .wetten-raster { grid-template-columns: 1fr; }
  .fuss-raster { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero-bild { object-position: center 55%; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(15,17,19,.92) 0%, rgba(15,17,19,.80) 55%, rgba(15,17,19,.92) 100%),
      radial-gradient(600px 420px at 80% 20%, rgba(227,6,19,.28), transparent 64%);
  }
  .hero h1 { max-width: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--kopf-hoehe) 0 auto; flex-direction: column; align-items: stretch;
    background: rgba(28,31,34,.985); backdrop-filter: blur(16px); padding: 1.2rem 1.4rem 2rem;
    gap: .2rem; transform: translateY(-130%); transition: transform .4s var(--ease);
    border-bottom: 1px solid var(--rand); max-height: calc(100svh - var(--kopf-hoehe)); overflow-y: auto;
  }
  .nav.auf { transform: translateY(0); }
  .nav a { padding: .95rem .6rem; font-size: 1.06rem; border-bottom: 1px solid var(--rand); }
  .nav a::after { display: none; }
  .sprachen { margin: 1rem 0 0; }
  .hero { min-height: auto; padding-top: calc(var(--kopf-hoehe) + 3rem); padding-bottom: 4rem; }
  .hero-text { max-width: none; }
  .finder { flex-direction: column; align-items: stretch; }
  .fuss-raster { grid-template-columns: 1fr; }
}

/* Haeufige Fragen */
.faq { display: grid; gap: .8rem; max-width: 900px; }
.faq-punkt {
  background: #fff; border: 1px solid var(--rand-hell); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq-punkt:hover { border-color: rgba(227,6,19,.35); }
.faq-punkt[open] { box-shadow: var(--schatten); border-color: transparent; }
.faq-punkt summary {
  cursor: pointer; list-style: none; padding: 1.25rem 3.4rem 1.25rem 1.6rem;
  font-weight: 700; font-size: 1.05rem; position: relative; line-height: 1.45;
}
.faq-punkt summary::-webkit-details-marker { display: none; }
.faq-punkt summary::after {
  content: ""; position: absolute; right: 1.6rem; top: 1.65rem;
  width: 9px; height: 9px; border-right: 2.5px solid var(--rot);
  border-bottom: 2.5px solid var(--rot); transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq-punkt[open] summary::after { transform: rotate(-135deg) translateY(-3px) translateX(-3px); }
.faq-punkt summary:focus-visible { outline: 2px solid var(--rot); outline-offset: -3px; }
.faq-punkt p {
  margin: 0; padding: 0 1.6rem 1.5rem; color: var(--grau-mittel);
  font-size: 1rem; line-height: 1.7; max-width: 68ch;
}

/* ---- Unterseiten ---- */
.unterseite { padding-top: var(--kopf-hoehe); }

.brotkrumen {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  font-size: .88rem; color: var(--grau-mittel); margin-bottom: 2.2rem;
}
.brotkrumen a { border-bottom: 1px solid transparent; }
.brotkrumen a:hover { color: var(--rot); border-color: currentColor; }
.brotkrumen span[aria-current] { color: var(--anthrazit); font-weight: 600; }

.standort-kopf {
  display: grid; grid-template-columns: 1.35fr .65fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.standort-kopf h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.standort-kopf h2 { font-size: 1.15rem; margin: 1.8rem 0 .8rem; }
.standort-kopf h2:first-child { margin-top: 0; }

.standort-daten {
  background: var(--grau-hell); border-radius: var(--radius);
  padding: 1.9rem; position: sticky; top: calc(var(--kopf-hoehe) + 1rem);
}
.standort-daten dl { margin: 0 0 .5rem; display: grid; gap: .1rem; }
.standort-daten dt {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .11em;
  color: var(--grau-mittel); font-weight: 700; margin-top: 1rem;
}
.standort-daten dt:first-child { margin-top: 0; }
.standort-daten dd { margin: 0; font-weight: 600; line-height: 1.55; }
.standort-daten dd a { border-bottom: 1px solid rgba(0,0,0,.18); }
.standort-daten dd a:hover { color: var(--rot); border-color: currentColor; }
.standort-daten .zeit-zeile { border-bottom-color: rgba(0,0,0,.08); }
.standort-daten .zeit-zeile span { color: var(--grau-mittel); }
.quelle { font-size: .78rem; color: var(--grau-mittel); margin: 1.2rem 0 0; }

.status {
  display: inline-flex; align-items: center; gap: .6rem; font-weight: 700;
  font-size: .95rem; margin: 1.2rem 0 0; padding: .5rem 1.1rem; border-radius: 100px;
}
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; }
.status-offen { background: rgba(22,163,74,.12); color: #15803D; }
.status-offen::before { background: #16A34A; box-shadow: 0 0 0 4px rgba(22,163,74,.2); }
.status-zu { background: rgba(107,114,128,.12); color: var(--grau); }
.status-zu::before { background: var(--grau-mittel); }

/* Karte als Link auf der Standortseite */
a.karte { display: block; color: inherit; }
a.karte:hover h3 { color: var(--rot); }

/* Kurzer Einstieg auf Unterseiten */
.hero-kurz { min-height: 62svh; }
.hero-kurz .hero-bild { object-position: center 35%; }

.job h3 a { border-bottom: 2px solid transparent; }
.job h3 a:hover { color: var(--rot); border-color: currentColor; }

@media (max-width: 900px) {
  .standort-kopf { grid-template-columns: 1fr; }
  .standort-daten { position: static; }
}

/* Pflichthinweis in der Fusszeile */
.fuss-hinweis {
  display: flex; align-items: center; gap: .9rem;
  max-width: 62ch; line-height: 1.55;
}
.fuss-hinweis a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }
.fuss-hinweis a:hover { color: var(--rot-hell); border-color: currentColor; }
.pflicht a { color: var(--rot-hell); border-bottom: 1px solid currentColor; }

/* Soziales Engagement */
.engagement {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem; margin-top: 1rem;
}
.engagement > div {
  border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.8rem; background: rgba(255,255,255,.04);
}
.engagement h3 { margin-bottom: .6rem; }
.engagement p { color: rgba(255,255,255,.72); font-size: .96rem; margin: 0; }
.engagement-was {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rot-hell); margin-bottom: .7rem;
}

/* Kategorien der Standorte unterscheiden */
.karte.kat-spielhallen::before { background: var(--grau-mittel); }
.karte.kat-spielhallen .karte-marke { background: rgba(63,68,72,.10); color: var(--grau); }
.karte.kat-gastronomie::before { background: var(--rot-dunkel); }
.karte.kat-gastronomie .karte-marke { background: rgba(227,6,19,.10); color: var(--rot); }

/* Stadtliste auf den Uebersichtsseiten */
.stadtliste { display: flex; flex-wrap: wrap; gap: .7rem; }
.stadtliste a {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1.2rem; border-radius: 100px; font-weight: 600;
  border: 1.5px solid var(--rand-hell); background: #fff;
  transition: all .25s var(--ease);
}
.stadtliste a:hover { border-color: var(--rot); color: var(--rot); transform: translateY(-2px); }
.stadtliste a span {
  font-size: .78rem; font-weight: 800; background: var(--grau-hell);
  color: var(--grau); padding: .12rem .5rem; border-radius: 100px;
}
.dunkel .stadtliste a { background: rgba(255,255,255,.06); border-color: var(--rand); color: #fff; }
.dunkel .stadtliste a:hover { border-color: var(--rot-hell); color: var(--rot-hell); }
.dunkel .stadtliste a span { background: rgba(255,255,255,.12); color: #fff; }

/* Rechtstexte, Impressum und Datenschutz */
.rechtstext { max-width: 74ch; }
.rechtstext h2 {
  font-size: 1.25rem; margin: 2.6rem 0 1rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--rand-hell);
}
.rechtstext h3 { font-size: 1.05rem; margin: 1.8rem 0 .6rem; }
.rechtstext p, .rechtstext li { color: var(--grau); }
.rechtstext ul { padding-left: 1.3rem; margin-bottom: 1.4rem; }
.rechtstext li { margin-bottom: .5rem; }
.rechtstext a { color: var(--rot); border-bottom: 1px solid rgba(227,6,19,.3); }
.rechtstext a:hover { border-color: currentColor; }
.rechtstext .nachweis { font-size: .88rem; color: var(--grau-mittel); }
.rechtstext .nachweis li { margin-bottom: .3rem; }
