/* Eigenes, schlankes Stylesheet für die serverseitig gerenderten SEO-Seiten
   (Event-Detail, Orts-Übersicht) – bewusst getrennt von style.css der App,
   damit diese Seiten ohne das App-JS auskommen und schnell laden. */
:root { color-scheme: light dark; }
* { box-sizing: border-box; }
body {
  margin: 0; font: 16px/1.55 system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a1a; background: #fafafa;
}
@media (prefers-color-scheme: dark) { body { color: #eee; background: #14161a; } }

.seo-kopf {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: #2563eb; color: #fff;
}
.seo-logo { color: #fff; font-weight: 700; font-size: 1.2rem; text-decoration: none; }
.seo-nav-link { color: #dbe6ff; text-decoration: none; font-size: 0.95rem; }
.seo-nav-link:hover { text-decoration: underline; }

.seo-inhalt { max-width: 760px; margin: 0 auto; padding: 24px 20px 60px; }
.seo-brotkrumen { font-size: 0.85rem; color: #666; margin-bottom: 16px; }
.seo-brotkrumen a { color: #2563eb; text-decoration: none; }

h1 { font-size: 1.6rem; margin: 0 0 8px; }
.seo-kategorie {
  display: inline-block; background: #e6edff; color: #2563eb; font-size: 0.8rem;
  font-weight: 600; padding: 3px 10px; border-radius: 999px; margin: 0 0 10px;
}
.seo-wann, .seo-wo { margin: 4px 0; font-size: 1.05rem; }
.seo-bild { width: 100%; max-height: 380px; object-fit: cover; border-radius: 10px; margin: 16px 0; }
.seo-beschreibung { margin: 16px 0; white-space: pre-line; }
.seo-karte { width: 100%; height: 320px; border-radius: 10px; margin: 16px 0; z-index: 0; }
.seo-link, .seo-zurueck {
  display: inline-block; margin-top: 10px; color: #2563eb; font-weight: 600; text-decoration: none;
}
.seo-link:hover, .seo-zurueck:hover { text-decoration: underline; }

.seo-intro { color: #555; }
@media (prefers-color-scheme: dark) { .seo-intro, .seo-brotkrumen { color: #aaa; } }

.seo-liste, .seo-orte-liste { list-style: none; padding: 0; margin: 20px 0; }
.seo-listeneintrag { border-bottom: 1px solid #e5e5e5; padding: 12px 0; }
@media (prefers-color-scheme: dark) { .seo-listeneintrag { border-color: #2a2d33; } }
.seo-listeneintrag a { display: flex; flex-direction: column; gap: 2px; color: inherit; text-decoration: none; }
.seo-listeneintrag a:hover .seo-le-titel { text-decoration: underline; }
.seo-le-datum { font-size: 0.85rem; color: #2563eb; font-weight: 600; }
.seo-le-titel { font-size: 1.05rem; font-weight: 600; }
.seo-le-ort { font-size: 0.9rem; color: #666; }
@media (prefers-color-scheme: dark) { .seo-le-ort { color: #999; } }

.seo-orte-liste li {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}
@media (prefers-color-scheme: dark) { .seo-orte-liste li { border-color: #2a2d33; } }
.seo-orte-liste a { color: #2563eb; text-decoration: none; font-weight: 600; }
.seo-anzahl { color: #888; font-variant-numeric: tabular-nums; }

.seo-fuss { padding: 24px 20px; text-align: center; color: #888; font-size: 0.85rem; }
/* Pflichtangaben muessen leicht erkennbar sein - deshalb dunkler als der
   uebrige Fusstext und unterstrichen, nicht als graue Randnotiz. */
.seo-rechtliches { margin-top: 10px; }
.seo-rechtliches a { color: #444; text-decoration: underline; }
.seo-rechtliches a:hover { color: #0b3d91; }
