/* Gemeinsames Aussehen der öffentlichen Seiten zur Räbechilbi-App.
   Farben aus der App (constants/theme.ts): warmes Dunkel und Räbenlicht-Gold.
   Kopf dunkel wie die App, Textteil hell — ein langer Rechtstext auf dunklem
   Grund liest sich schlecht, und gelesen werden soll er. */
:root {
  --nacht: #1B1305;
  --nacht-tief: #100A02;
  --gold: #F4B740;
  --gold-weich: #FBE3A1;
  --gold-tief: #8A5F0C;
  --creme: #FAF7F1;
  --text: #221C12;
  --leise: #6E6455;
  --linie: #E8E0D2;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--creme); color: var(--text);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.innen { max-width: 720px; margin: 0 auto; padding: 0 22px; }

/* Kopf: Räbenlicht — ein warmer Schein hinter der Räbe, wie im Dunkeln. */
.kopf {
  background:
    radial-gradient(58% 78% at 50% 22%, rgba(244,183,64,.30) 0%, rgba(244,183,64,0) 70%),
    linear-gradient(180deg, var(--nacht-tief) 0%, var(--nacht) 100%);
  color: #fff; text-align: center; padding: 40px 22px 34px;
}
.kopf img { width: 122px; height: 122px; display: block; margin: 0 auto 16px;
  filter: drop-shadow(0 6px 26px rgba(244,183,64,.45)); }
.kopf h1 { margin: 0; font-size: 30px; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
.kopf p { margin: 8px 0 0; color: var(--gold-weich); font-size: 16px; }

main { padding: 30px 0 56px; }
h2 { font-size: 12.5px; letter-spacing: .10em; text-transform: uppercase;
  color: var(--leise); margin: 38px 0 14px; font-weight: 700; }
h2:first-child { margin-top: 0; }
h3 { font-size: 18px; margin: 26px 0 6px; letter-spacing: -.01em; }
p { margin: 0 0 14px; }
a { color: var(--gold-tief); text-decoration-thickness: 1px; text-underline-offset: 2px; }
ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 7px; }

/* Sprachhinweis. Bewusst nur ein Hinweis und keine uebersetzte Fassung: vier
   Sprachen mal zwei Seiten waeren acht Dateien, die zusammenpassen muessen —
   in der Praxis wird eine nachgefuehrt und drei veralten. Eine veraltete
   Datenschutzerklaerung ist schlechter als gar keine. */
.sprachen {
  margin: 0 0 26px; padding: 13px 17px; background: #F2ECE0;
  border-radius: 10px; font-size: 13.5px; line-height: 1.55; color: var(--leise);
}
.sprachen b { display: block; font-weight: 400; margin-bottom: 5px; color: #8B8170; }
.sprachen a { font-weight: 600; white-space: nowrap; }

.kasten {
  background: #fff; border: 1px solid var(--linie); border-left: 4px solid var(--gold);
  border-radius: 14px; padding: 20px 22px; box-shadow: 0 1px 2px rgba(34,28,18,.04);
}
.kasten p:last-child { margin-bottom: 0; }
.gross { font-size: 19px; font-weight: 600; display: block; margin-bottom: 10px; }
.mail { font-size: 19px; font-weight: 600; }

details {
  background: #fff; border: 1px solid var(--linie); border-radius: 12px;
  padding: 0 18px; margin-bottom: 9px; transition: border-color .15s;
}
details[open] { border-color: #DCD0B8; }
summary { cursor: pointer; padding: 15px 0; font-weight: 600; list-style: none;
  display: flex; align-items: baseline; gap: 11px; }
summary::-webkit-details-marker { display: none; }
summary::before { content: "+"; color: var(--gold-tief); font-weight: 700;
  font-size: 19px; line-height: 1; width: 13px; flex: 0 0 13px; }
details[open] summary::before { content: "\2013"; }
details p { margin: 0 0 16px; color: #3C3527; padding-left: 24px; }

.fuss { border-top: 1px solid var(--linie); margin-top: 46px; padding-top: 18px;
  color: var(--leise); font-size: 14px; }
.fuss nav { margin-bottom: 10px; }
.fuss nav a { margin-right: 18px; }

@media (max-width: 520px) {
  body { font-size: 16px; }
  .kopf { padding: 32px 20px 28px; }
  .kopf h1 { font-size: 25px; }
  .kopf img { width: 96px; height: 96px; }
}
