/* ============================================================
   start.css — die Startseite
   Nach den Entwuerfen Startseite1/2 vom 29.08.2026.

   Bewusst eine eigene Datei und keine 1.700 Zeilen im <style> der
   index.html: die alte Startseite war genau das, und jede Aenderung
   musste man darin suchen.

   Farben und Schriften kommen aus tokens.css. Hier steht NUR Layout.
   ============================================================ */

.st-breite { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Abschnittskopf: Titel links, Weg zu mehr rechts ─────────── */
.st-kopf {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.st-kopf h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px);
  font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin: 0;
}
.st-kopf p { margin: 6px 0 0; font-size: 14px; color: var(--ink3); }
.st-mehr {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 14px; font-weight: 650; color: var(--local); text-decoration: none;
}
.st-mehr:hover { text-decoration: underline; }
.st-mehr .ico { width: 15px; height: 15px; }

.st-abschnitt { padding: 56px 0; }
.st-abschnitt.eng { padding: 40px 0; }

/* ── Hero ───────────────────────────────────────────────────── */
.st-hero { position: relative; min-height: 520px; display: flex; align-items: center; }
.st-hero-bild {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.st-hero-bild::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,26,20,.86) 0%, rgba(12,26,20,.62) 46%, rgba(12,26,20,.18) 100%);
}
.st-hero-inhalt { position: relative; width: 100%; padding: 72px 0 96px; }
.st-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5.4vw, 56px); line-height: 1.08; letter-spacing: -.03em;
  color: #fff; margin: 0 0 16px; max-width: 15ch; text-wrap: balance;
}
.st-hero p {
  color: rgba(255,255,255,.9); font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6; max-width: 46ch; margin: 0;
}

/* ── Suche: der eigentliche Knopf der Seite ──────────────────── */
.st-suche {
  margin-top: 30px; background: #fff; border-radius: var(--rlg);
  box-shadow: var(--sh-lg); padding: 10px;
  display: grid; gap: 8px;
  grid-template-columns: 1.5fr 1fr 1fr auto;
}
.st-suche-feld {
  display: flex; align-items: center; gap: 9px; padding: 11px 13px;
  border-radius: var(--rmd); background: var(--cream);
  border: 1px solid transparent; min-width: 0;
}
.st-suche-feld:focus-within { border-color: var(--mint); background: #fff; }
.st-suche-feld .ico { width: 17px; height: 17px; color: var(--ink3); flex: 0 0 auto; }
.st-suche-feld input, .st-suche-feld select {
  border: 0; background: none; font: inherit; font-size: 14px; color: var(--ink);
  width: 100%; min-width: 0; outline: none; appearance: none;
}
.st-suche-knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 26px; border: 0; border-radius: var(--rmd);
  background: var(--local); color: #fff; font: inherit; font-weight: 700; font-size: 14.5px;
  cursor: pointer; transition: background .15s;
}
.st-suche-knopf:hover { background: #235741; }
.st-vorschlaege { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.st-vorschlaege span { color: rgba(255,255,255,.72); font-size: 13px; }
.st-chip {
  padding: 5px 13px; border-radius: 99px; border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08); color: #fff; font-size: 12.5px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: background .15s;
}
.st-chip:hover { background: rgba(255,255,255,.2); }

/* ── Vertrauensleiste ───────────────────────────────────────── */
.st-vertrauen {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--rlg);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 4px; padding: 22px; margin-top: -46px; position: relative; z-index: 2;
}
.st-vertrauen div { display: flex; gap: 12px; align-items: flex-start; padding: 8px 12px; }
.st-vertrauen .ico { width: 22px; height: 22px; color: var(--local); flex: 0 0 auto; margin-top: 1px; }
.st-vertrauen strong { display: block; font-size: 13.5px; margin-bottom: 3px; color: var(--ink); }
.st-vertrauen small { font-size: 12.5px; line-height: 1.5; color: var(--ink3); }

/* ── Kategorien ─────────────────────────────────────────────── */
.st-kategorien { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.st-kat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; padding: 22px 12px; text-align: center; text-decoration: none;
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--rmd);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.st-kat:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--mint); }
.st-kat .ico { width: 26px; height: 26px; color: var(--local); }
.st-kat b { font-size: 13.5px; font-weight: 650; color: var(--ink); }
.st-kat small { font-size: 12px; color: var(--ink3); }

/* Kacheln mit Bild aus der Bühne (startseite_buehne). Bis zum 04.09.2026
   las die Startseite die Bühne nicht — hier landen die gepflegten
   Kachelbilder jetzt wieder (AP-0108). Entweder ALLE Kacheln haben ein
   Bild oder keine: eine halb bebilderte Reihe sieht kaputt aus. */
.st-kategorien.mit-bild { grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)); }
.st-kategorien.mit-bild .st-kat { padding: 0 0 14px; gap: 7px; overflow: hidden; }
.st-kat-bild {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
  margin-bottom: 4px; background: var(--cream);
}

/* ── Erlebniskarten ─────────────────────────────────────────── */
.st-karten { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 18px; }
.st-karte {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--border); border-radius: var(--rmd);
  overflow: hidden; transition: transform .15s, box-shadow .15s;
}
.st-karte:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.st-karte-bild { position: relative; aspect-ratio: 4/3; background: var(--sand); overflow: hidden; }
.st-karte-bild img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-marke {
  position: absolute; top: 10px; left: 10px; padding: 4px 9px; border-radius: 6px;
  background: rgba(20,18,14,.82); color: #fff; font-size: 10.5px; font-weight: 750;
  letter-spacing: .04em; text-transform: uppercase;
}
.st-karte-text { padding: 14px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.st-karte-ort { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink3); }
.st-karte-ort .ico { width: 13px; height: 13px; }
.st-karte h3 {
  margin: 0; font-size: 15px; font-weight: 650; line-height: 1.35; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.st-karte-fakten { display: flex; gap: 14px; font-size: 12px; color: var(--ink3); }
.st-karte-fakten span { display: inline-flex; align-items: center; gap: 5px; }
.st-karte-fakten .ico { width: 13px; height: 13px; }
.st-karte-preis {
  margin-top: auto; padding-top: 11px; border-top: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
}
.st-karte-preis .sw-preis { font-size: 16px; font-weight: 750; color: var(--ink); }
.st-karte-preis small { font-size: 11.5px; color: var(--ink3); }

/* ── Ziele ──────────────────────────────────────────────────── */
.st-ziele { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.st-ziel {
  position: relative; aspect-ratio: 3/4; border-radius: var(--rmd); overflow: hidden;
  text-decoration: none; display: flex; align-items: flex-end; background: var(--sand);
}
.st-ziel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.st-ziel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,26,20,.82) 0%, rgba(12,26,20,0) 55%);
}
.st-ziel-text { position: relative; padding: 16px; color: #fff; }
.st-ziel-text b { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.st-ziel-text small { font-size: 12.5px; opacity: .85; }

/* ── Anbieter-Aufruf ────────────────────────────────────────── */
.st-aufruf {
  background: var(--local); color: #fff; border-radius: var(--rlg);
  padding: 34px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.st-aufruf h2 {
  font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600; margin: 0 0 6px; color: #fff;
}
.st-aufruf p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,.84); max-width: 52ch; }
.st-aufruf-knoepfe { display: flex; gap: 10px; flex-wrap: wrap; }
.st-knopf {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px;
  border-radius: var(--rmd); font-size: 14px; font-weight: 700; text-decoration: none;
  border: 1px solid transparent; transition: background .15s;
}
.st-knopf-hell { background: #fff; color: var(--local); }
.st-knopf-hell:hover { background: var(--cream); }
.st-knopf-rand { border-color: rgba(255,255,255,.5); color: #fff; }
.st-knopf-rand:hover { background: rgba(255,255,255,.14); }

/* ── Fuss ───────────────────────────────────────────────────── */
.st-fuss { background: #14231C; color: rgba(255,255,255,.68); padding: 52px 0 28px; margin-top: 64px; }
.st-fuss-oben { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.st-fuss-marke { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.st-fuss-marke b { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; }
.st-fuss p { font-size: 13.5px; line-height: 1.65; margin: 0 0 16px; max-width: 34ch; }
.st-fuss h3 {
  font-size: 12px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; margin: 0 0 12px;
}
.st-fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.st-fuss a { color: rgba(255,255,255,.68); text-decoration: none; font-size: 13.5px; }
.st-fuss a:hover { color: #fff; text-decoration: underline; }
.st-fuss-sozial { display: flex; gap: 10px; }
.st-fuss-sozial a {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.st-fuss-sozial .ico { width: 16px; height: 16px; color: #fff; }
.st-fuss-unten {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
}
.st-fuss-unten .sw-waehrungswahl select { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }

/* ── Leerzustand: lieber nichts als erfundene Inhalte ────────── */
.st-leer {
  padding: 34px; text-align: center; border: 1px dashed var(--border);
  border-radius: var(--rmd); color: var(--ink3); font-size: 14px; background: var(--cream);
}

@media (max-width: 900px) {
  .st-suche { grid-template-columns: 1fr 1fr; }
  .st-suche-knopf { grid-column: 1 / -1; padding: 13px; }
  .st-fuss-oben { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .st-suche { grid-template-columns: 1fr; }
  .st-hero { min-height: 440px; }
  .st-vertrauen { margin-top: -20px; }
  .st-fuss-oben { grid-template-columns: 1fr; }
}

/* ── Pillen: direkt wählen statt Auswahlfeld öffnen ───────────
   Als Bahn, die seitlich rollt. Auf dem Telefon lässt sich damit eine
   Stadt in einer Bewegung wählen, ohne dass ein Menü aufgeht. Die
   Einträge kommen aus den Facetten — kommt eine Stadt dazu, erscheint
   sie hier von selbst. */
.st-pillen { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.st-pillen-lbl {
  color: rgba(255,255,255,.66); font-size: 13px; font-weight: 650;
  flex: 0 0 auto; padding-bottom: 2px;
}
.st-pillen-bahn {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.st-pillen-bahn::-webkit-scrollbar { display: none; }
.st-pille {
  flex: 0 0 auto; scroll-snap-align: start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 15px; border-radius: 99px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.09);
  color: #fff; font: inherit; font-size: 13px; font-weight: 650;
  white-space: nowrap; transition: background .15s, border-color .15s;
}
.st-pille:hover { background: rgba(255,255,255,.2); }
.st-pille small { font-size: 11px; opacity: .7; font-weight: 600; }
.st-pille.an {
  background: var(--pille-farbe, #fff);
  border-color: var(--pille-farbe, #fff);
  color: var(--pille-farbe) ;
}
/* Ohne eigene Farbe: weiße Pille mit dunkler Schrift. Mit Farbe: die
   Farbe der Art, Schrift weiß — beides bleibt lesbar. */
.st-pille.an:not([style*="--pille-farbe"]) { color: var(--ink); }
.st-pille.an[style*="--pille-farbe"] { color: #fff; }

/* Leitfarbe der gewählten Art faerbt die Seite mit ein. */
#start { --st-akzent: var(--local); }
.st-suche-knopf { background: var(--st-akzent, var(--local)); }
.st-kat:hover { border-color: var(--st-akzent, var(--mint)); }
.st-mehr { color: var(--st-akzent, var(--local)); }

/* ── Aufruf an Gastgeber, schlanke Fassung ───────────────────
   Solange es wenige Angebote gibt, ist das Werben um Gastgeber so
   wichtig wie das Verkaufen. Deshalb nicht nur einmal ganz unten. */
.st-werbung {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin: 26px 0 0; padding: 16px 20px;
  border: 1px solid var(--border); border-left: 3px solid var(--st-akzent, var(--local));
  border-radius: var(--rmd); background: var(--cream);
}
.st-werbung p { margin: 0; font-size: 14px; color: var(--ink2); }
.st-werbung strong { color: var(--ink); }
.st-werbung a {
  white-space: nowrap; font-size: 13.5px; font-weight: 700;
  color: var(--st-akzent, var(--local)); text-decoration: none;
}
.st-werbung a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .st-pillen { flex-direction: column; align-items: flex-start; gap: 6px; }
  .st-pillen-bahn { width: 100%; }
}

/* ── Erlebnis oder Sprachkurs: die erste Entscheidung ─────────
   Als Reiter oben auf der Suchkarte, damit die Ebenen sichtbar sind:
   erst was, dann wo, dann wie. Vorher lag alles nebeneinander und
   wirkte dadurch ohne Struktur. */
.st-modus {
  display: inline-flex; gap: 4px; padding: 4px;
  background: rgba(255,255,255,.14); border-radius: 12px 12px 0 0;
  backdrop-filter: blur(6px);
}
.st-modus button {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border: 0; border-radius: 9px; cursor: pointer;
  background: transparent; color: rgba(255,255,255,.82);
  font: inherit; font-size: 14px; font-weight: 700;
  transition: background .15s, color .15s;
}
.st-modus button:hover { color: #fff; }
.st-modus button[aria-selected="true"] { background: #fff; color: var(--ink); }
.st-modus .ico { width: 16px; height: 16px; }
.st-modus + .st-suche { margin-top: 0; border-top-left-radius: 0; }
.st-suche-feld[hidden], .st-pillen[hidden] { display: none; }
