/* 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 */
/* Knoepfe, Form aus dem Logo abgeleitet (10.09.2026).
   Das Logo ist geometrisch: gerade Kanten, eine schraege Kerbe im F, der Kreis der
   Bildmarke mit rotem Schnitt. Die Knoepfe nehmen die Kerbe auf: rechteckig, kleine
   Rundung, eine abgeschraegte Ecke oben rechts. Die Kerbe schneidet ein clip-path, das
   ueber den Kasten hinausreicht, damit der Schatten erhalten bleibt und nur die Ecke
   faellt. Bewegung: beim Ueberfahren schiebt ein Fuellstreifen schraeg von links herein
   (::before), der rote Hauptknopf traegt im Ruhezustand alle sechs Sekunden einen
   Lichtstreif (::after). Bei reduzierter Bewegung bleibt beides aus. */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 6px; font-weight: 700; font-size: 1rem;
  letter-spacing: .02em; border: 2px solid transparent; cursor: pointer;
  font-family: inherit; white-space: nowrap;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
/* Kerbe nur auf gefuellten Knoepfen. Auf Rahmenknoepfen schnitt sie den Rahmen an und
   wirkte wie eine Luecke. Korrigiert 10.09.2026, Rueckmeldung des Nutzers. */
.knopf-rot, .knopf-gruen {
  clip-path: polygon(-40px -40px, calc(100% - 56px) -40px, calc(100% + 40px) 56px, calc(100% + 40px) calc(100% + 40px), -40px calc(100% + 40px));
}
/* Fuellstreifen: breiter als der Knopf und schraeg, damit er beim Ueberfahren alles
   deckt und im Ruhezustand ganz draussen liegt. Vorher blieb rechts ein Spalt und
   links schaute ein Splitter heraus. */
.knopf::before {
  content: ""; position: absolute; inset: -2px -30%; z-index: -2; background: var(--rot);
  transform: translateX(-100%) skewX(-14deg); transform-origin: left;
  transition: transform .38s var(--ease);
}
.knopf:hover::before, .knopf:focus-visible::before { transform: translateX(0) skewX(-14deg); }
.knopf::after {
  content: ""; position: absolute; top: -30%; bottom: -30%; left: -45%; width: 28%; z-index: -1;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.45) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg); opacity: 0; pointer-events: none;
}
.knopf-rot::after { animation: knopf-glanz 6s var(--ease) infinite; }
.knopf:hover::after { animation: knopf-glanz 1s var(--ease) 1; }
@keyframes knopf-glanz {
  0%   { left: -45%; opacity: 0; }
  8%   { opacity: 1; }
  22%  { left: 120%; opacity: 1; }
  23%  { opacity: 0; }
  100% { left: 120%; opacity: 0; }
}
.knopf-rot { background: var(--rot); color: #fff; }
.knopf-rot::before { background: var(--rot-dunkel); }
.knopf-rot:hover { transform: translateY(-2px); }
.knopf-klar { border-color: rgba(255,255,255,.4); color: #fff; }
.knopf-klar:hover { border-color: var(--rot); transform: translateY(-2px); }
.knopf-linie { border-color: var(--anthrazit); color: var(--anthrazit); }
.knopf-linie::before { background: var(--anthrazit); }
.knopf-linie:hover { color: #fff; transform: translateY(-2px); }
/* WhatsApp. Dunkle Schrift auf dem Markengruen, das ergibt 8,5:1 Kontrast.
   Weisse Schrift auf #25D366 waere nur 2:1 und faellt bei jeder Pruefung durch. */
.knopf-gruen { background: #25D366; color: var(--anthrazit); }
.knopf-gruen::before { background: #1FBE5B; }
.knopf-gruen:hover { transform: translateY(-2px); }

/* 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.offen span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.offen span:nth-child(2) { opacity: 0; }
.burger.offen span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Bildschirmfuellender Einstieg mit Foto */
.hero {
  /* Begrenzt statt voller Bildschirmhoehe. Mit 100svh blieb auf hohen Bildschirmen
     eine halbe Seite leeres Foto unter den Knoepfen. Geaendert 10.09.2026. */
  position: relative; min-height: clamp(560px, 82svh, 820px); 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;
}

/* Drei Bereiche unter dem Einstieg */
.bereiche { background: var(--weiss); padding: 2.6rem 0 3rem; }
.bereiche-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.bereich {
  position: relative; display: block; min-height: 250px; border-radius: var(--radius);
  overflow: hidden; background: var(--anthrazit); color: #fff; box-shadow: var(--schatten);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.bereich img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.bereich::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,23,25,.10) 0%, rgba(20,23,25,.55) 45%, rgba(20,23,25,.93) 100%);
}
.bereich:hover { transform: translateY(-6px); }
.bereich:hover img { transform: scale(1.05); }
.bereich-text { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.5rem 1.7rem; display: grid; gap: .15rem; }
.bereich-zahl { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--rot-hell); }
.bereich-name { font-size: 1.25rem; font-weight: 800; }
.bereich-satz { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.5; }

/* Stadtkacheln in der Standortuebersicht */
.staedte {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .9rem;
  margin-bottom: 2.4rem;
}
.stadt-kachel {
  display: grid; gap: .2rem; padding: 1.1rem 1.3rem; border-radius: var(--radius);
  background: var(--grau-hell); border: 1px solid transparent;
  transition: all .28s var(--ease);
}
.stadt-kachel:hover { background: #fff; border-color: var(--rand-hell); box-shadow: var(--schatten); transform: translateY(-4px); }
.stadt-name { font-weight: 800; font-size: 1.1rem; }
.stadt-arten { font-size: .84rem; color: var(--grau-mittel); }

/* Standortliste eingeklappt: nur die ersten acht Karten */
.standorte.eingeklappt .karte:nth-child(n + 9) { display: none; }
.alle-zeigen { text-align: center; margin: 2.2rem 0 0; }

/* 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;
}
/* Live-Sport auf der Karte, Daten aus inc/sender.php */
.karte-sender { margin-top: .7rem; font-size: .82rem; font-weight: 700; color: var(--anthrazit); }
.quelle-klein { font-size: .78rem; font-weight: 400; color: var(--grau-mittel); }

/* 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; }
/* Begriff und Text laufen in einer Zeile weiter. Als Flex-Zeile brach der fette
   Begriff in zwei Zeilen um, waehrend der Text daneben stand. Behoben 10.09.2026. */
.merkmale li { position: relative; padding-left: 1.5rem; }
.merkmale li::before {
  content: ""; position: absolute; left: 0; top: .55rem; width: 9px; height: 9px;
  border-radius: 50%; background: var(--rot-hell);
}
.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); }

/* Sportwetten auf der Startseite: heller Block, rechts die Foto-Buehne. Das
   Wettshop-Foto als Karte, in die untere Haelfte ist das Live-Sport-Feld eingelassen.
   Ersetzt den dunklen Block vom Vormittag, der direkt auf die dunkle Lounge folgte. */
.wetten-buehne {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--anthrazit); box-shadow: var(--schatten);
}
.wetten-buehne img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.live {
  position: absolute; inset: auto 0 0 0; color: #fff; padding: 3.4rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(20,23,25,0) 0%, rgba(20,23,25,.78) 30%, rgba(20,23,25,.95) 100%);
}
.live .augen { color: var(--rot-hell); margin-bottom: .4rem; }
.live .augen::before { background: var(--rot-hell); }
.live-titel { font-weight: 800; font-size: 1.15rem; margin: 0 0 .9rem; }
.live-raster { display: flex; gap: .8rem; flex-wrap: wrap; }
.live-kachel {
  flex: 1 1 130px; display: flex; flex-direction: column; padding: .85rem 1.1rem;
  border-radius: 10px; background: #fff; color: var(--anthrazit);
  transition: all .28s var(--ease); position: relative; overflow: hidden;
}
.live-kachel::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--rot);
  transform: scaleX(0); transform-origin: left; transition: transform .32s var(--ease);
}
.live-kachel:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.live-kachel:hover::before { transform: scaleX(1); }
.live-zahl { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--rot); }
.live-name { font-weight: 800; font-size: 1.05rem; margin-top: .3rem; }
.live-satz { font-size: .8rem; color: var(--grau-mittel); }
.live-hinweis { font-size: .82rem; color: var(--grau-mittel); margin: 1rem 0 0; }

/* 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 */
/* auto-fill statt auto-fit: eine einzelne Karte (Filialseite) bleibt Kartenbreite. */
.jobs-raster { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.3rem; }
/* Stellenkarte nach dem Entwurf vom 10.09.2026: feste Reihenfolge Bereich, Titel,
   Ort, Chips, Text, Knopf. Titel hat Platz fuer zwei Zeilen, Text fuer drei, damit
   alle Karten gleich hoch sind und nichts springt. Rot nur beim Bereich. */
.job {
  position: relative; background: #fff; border-radius: var(--radius); padding: 30px;
  border: 1px solid var(--rand-hell); display: flex; flex-direction: column; overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
/* Beim Ueberfahren: Karte hebt sich, oben laeuft eine rote Linie von links nach rechts. */
.job::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px;
  background: var(--rot); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.job:hover { transform: translateY(-6px); box-shadow: var(--schatten); }
.job:hover::before { transform: scaleX(1); }
.job-art {
  font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rot); margin: 0 0 12px;
}
.job h3 { margin: 0 0 10px; min-height: 2.2em; font-size: 1.4rem; line-height: 1.1; }
.job h3 a { color: inherit; }
.job-ort { font-size: .87rem; line-height: 1.45; color: var(--grau-mittel); margin: 0 0 14px; }
.job-merkmale { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 18px; }
.merkmal {
  display: inline-block; white-space: nowrap; font-size: 11.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
  background: var(--grau-hell); color: var(--grau);
}
.job-text {
  margin: 0 0 26px; font-size: .97rem; line-height: 1.6; color: var(--grau-mittel);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; line-clamp: 3;
  overflow: hidden; min-height: 4.65em;
}

.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: auto 0 0;
  /* Abstand zwischen den Knoepfen. 1rem sind 16 px, doppelt so viel wie die
     8 px, die web.dev als Mindestabstand fuer Tap-Targets nennt. Ohne diese
     Regel standen hier nur rund 4 px, das Leerzeichen zwischen zwei
     inline-flex-Elementen. Gilt auch, wenn die Knoepfe mobil umbrechen. */
  display: flex; flex-wrap: wrap; gap: 1rem;
}
/* Zwei-Klick-Karte. Der Platzhalter traegt dieselbe Hoehe wie die spaetere Karte,
   damit beim Laden nichts springt. */
.anfahrt-huelle {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--rand-hell); background: #fff;
}
.anfahrt-huelle iframe { width: 100%; height: 100%; border: 0; display: block; }
.anfahrt-platz {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .4rem; text-align: center;
  padding: 2rem; background: var(--grau-hell, #F2F3F4);
}
.anfahrt-adresse { font-weight: 700; font-size: 1.1rem; margin: 0; }
.anfahrt-hinweis {
  max-width: 52ch; font-size: .88rem; color: var(--grau-mittel); margin: .2rem 0 1.2rem;
}
.anfahrt-hinweis a { color: var(--rot); font-weight: 700; border-bottom: 1px solid currentColor; }
@media (max-width: 700px) { .anfahrt-huelle { aspect-ratio: 4 / 5; } }

/* Knopf unter den Stellen einer Standortseite. Abstand, damit er nicht an der
   Stellenkarte klebt, und als Linien-Knopf, damit "Jetzt bewerben" der einzige
   rote Knopf im Abschnitt bleibt. */
.jobs-alle { margin: 2.6rem 0 0; }

/* Knopf unter den drei Anreissern der Startseite, fuehrt auf die Jobs-Seite. */
.jobs-mehr { margin: 2.4rem 0 0; text-align: center; }
.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; }
  .bereiche-raster { grid-template-columns: 1fr; }
  .bereich { min-height: 190px; }
  .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.offen { 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);
  animation: pulsOffen 2s ease-out infinite;
}
/* Pulsierender Ring am Punkt "Jetzt geoeffnet". Nur offen, geschlossen bleibt ruhig.
   Wer Animationen abgeschaltet hat, sieht ueber die Regel bei prefers-reduced-motion
   weiter den ruhigen Punkt mit festem Ring. */
@keyframes pulsOffen {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.45); }
  70%  { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.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; }
/* Ausgeblendete Karten des Standortfilters. Ohne diese Regel gewinnt die
   Zeile darueber gegen das eingebaute [hidden] des Browsers und der Filter
   bleibt wirkungslos. */
.karte[hidden] { display: none; }
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; }

/* ── Gaestestimmen ──────────────────────────────────────────────────────────
   Karten mit Zitat, Sternen als Zeichen. Kein Bild, keine fremde Schrift.
   Angelegt 06.09.2026. */
.bewertungen { margin-top: 3.4rem; }
.bew-kopf { text-align: center; max-width: 680px; margin: 0 auto 2.2rem; }
.bew-sterne {
  font-size: 1.9rem; line-height: 1; letter-spacing: .12em;
  color: #F5A623; margin: .2rem 0 .7rem;
}
.bew-kopf h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin: 0 0 .6rem; }
.bew-vorspann { color: var(--grau-mittel); margin: 0; }
.bew-anzahl { color: var(--grau-mittel); font-size: .92rem; margin: .5rem 0 0; }
/* Endlosband, Vorbild piron-metallbau.de. Die Liste steht zweimal im Band, das
   Band wandert um die Haelfte seiner Breite und springt zurueck. Der Abstand liegt
   als margin-right auf der Karte, nicht als gap, sonst ruckelt der Sprung. Die
   Raender laufen ueber eine Maske weich aus, das passt auf jeden Hintergrund. */
.bw-band {
  --bw-karte: 320px; --bw-abstand: 1.2rem;
  overflow: hidden; margin-top: .4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 56px, #000 calc(100% - 56px), transparent);
          mask-image: linear-gradient(90deg, transparent, #000 56px, #000 calc(100% - 56px), transparent);
}
.bw-lauf {
  display: flex; align-items: stretch; width: max-content;
  animation: bw-lauf var(--bw-dauer, 60s) linear infinite; will-change: transform;
}
@keyframes bw-lauf {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
/* Stillstand, solange jemand hinsieht oder mit der Tastatur darin ist. */
.bw-band:hover .bw-lauf, .bw-band:focus-within .bw-lauf { animation-play-state: paused; }
.bw-lauf .bew-karte { flex: 0 0 var(--bw-karte); margin: 0 var(--bw-abstand) 0 0; }
/* Rueckfall: kein Dauerlauf, sondern ein Band zum Wischen. Bei abgeschalteter
   Bewegung und auf Geraeten ohne Mauszeiger. Die Kopie wird dann ausgeblendet. */
@media (prefers-reduced-motion: reduce), (hover: none) {
  .bw-band { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; -webkit-mask-image: none; mask-image: none; }
  .bw-lauf { animation: none; }
  .bw-lauf .bew-karte { scroll-snap-align: start; }
  .bw-lauf > .bew-karte[aria-hidden="true"] { display: none; }
}
@media (max-width: 520px) { .bw-band { --bw-karte: min(300px, 82vw); } }
.bew-karte {
  margin: 0; background: #fff; border: 1px solid var(--rand-hell);
  color: var(--anthrazit);   /* im dunklen Lounge-Block sonst weiss auf weiss */
  border-radius: var(--radius); padding: 1.5rem 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.bew-karte:hover { box-shadow: var(--schatten); }
.bew-karte-sterne { color: #F5A623; letter-spacing: .1em; margin: 0; font-size: 1.05rem; }
.bew-karte blockquote {
  margin: 0; color: var(--grau); font-size: 1rem; line-height: 1.7; flex: 1;
  /* Auf sechs Zeilen gekuerzt, damit die Karten gleich hoch bleiben. */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; line-clamp: 6; overflow: hidden;
}
.bew-karte blockquote::before { content: "\201E"; }
.bew-karte blockquote::after  { content: "\201C"; }
.bew-karte figcaption {
  display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
  border-top: 1px solid var(--rand-hell); padding-top: .8rem;
}
.bew-name { font-weight: 700; }
.bew-datum { color: var(--grau-mittel); font-size: .86rem; }
.bew-fuss {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin: 2rem 0 0;
}
/* Im dunklen Lounge-Block stehen die Karten auf hellem Grund, der Text darum ist hell. */
.lounge .bew-vorspann, .lounge .bew-anzahl, .lounge .bew-fuss .quelle { color: rgba(255,255,255,.72); }
@media (max-width: 620px) {
  .bew-sterne { font-size: 1.6rem; }
  .bew-karte { padding: 1.3rem 1.35rem; }
}

/* Filterknoepfe und Stadtliste: dieselbe Kerbe wie die Knoepfe, kleiner (10.09.2026) */
.filter button, .stadtliste a {
  border-radius: 4px;
  clip-path: polygon(-20px -20px, calc(100% - 30px) -20px, calc(100% + 20px) 30px, calc(100% + 20px) calc(100% + 20px), -20px calc(100% + 20px));
}
@media (prefers-reduced-motion: reduce) {
  .knopf::after { animation: none !important; }
  .knopf::before { transition: none; }
}

/* Live-Spiele (Stufe 2a, 10.09.2026): Zeile je Spiel, Konferenz zusammengefasst */
.spiele { margin-top: 1.4rem; }
.spiele-titel { font-weight: 800; font-size: 1.05rem; margin: 0 0 .6rem; }
.spiele-liste { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.spiele-liste li {
  display: grid; grid-template-columns: 7.4rem 1fr auto auto; gap: .8rem; align-items: baseline;
  padding: .65rem .9rem; background: #fff; border: 1px solid var(--rand-hell); border-radius: 8px;
  font-size: .95rem; color: var(--anthrazit);
}
.spiele-zeit { font-weight: 700; color: var(--grau); white-space: nowrap; }
.spiele-paarung { font-weight: 600; }
.spiele-wettbewerb { display: block; font-weight: 400; font-size: .8rem; color: var(--grau-mittel); }
.spiele-sender { font-weight: 800; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rot); white-space: nowrap; }
.spiele-orte { font-size: .82rem; color: var(--grau-mittel); white-space: nowrap; border-bottom: 1px solid transparent; }
.spiele-orte:hover { color: var(--rot); border-bottom-color: currentColor; }
.spiele-liste-gross { max-width: 900px; }
.spiele-liste-gross li { font-size: 1.02rem; padding: .9rem 1.1rem; }
@media (max-width: 620px) {
  .spiele-liste li { grid-template-columns: 1fr auto; }
  .spiele-zeit { grid-column: 1 / -1; }
  .spiele-orte { grid-column: 1 / -1; }
}
