/* ==========================================================================
   Tennishütte bei Milena
   --------------------------------------------------------------------------
   Aufbau der Datei:
     1. Farben, Schriften, Maße   (die "Stellschrauben" – hier zuerst ändern)
     2. Grundlagen
     3. Bausteine (Knöpfe, Überschriften, Auftritt-Animation)
     4. Kopfbereich
     5. Hero
     6. Willkommen
     7. Galerie
     8. Speisekarte
     9. Anfahrt
    10. Kontakt
    11. Fußbereich
    12. Kleine Bildschirme
   ========================================================================== */


/* 1. Farben, Schriften, Maße ---------------------------------------------- */

:root {
  /* Markenfarben: Platzgrün, Kalklinien, Sandplatz – bleiben in beiden Modi gleich */
  --platz:       #173D2E;   /* Hauptgrün, für Akzentflächen und Knöpfe */
  --platz-tief:  #0E2219;   /* fast schwarzes Grün, für Hero und Fuß */
  --zaun:        #3A6B55;   /* helleres Grün für Verläufe */
  --kalk:        #EEF1EA;   /* kalkweiß, leicht grünstichig */
  --sand:        #B4502F;   /* Sandplatzrot, sehr sparsam einsetzen */
  --sand-hell:   #F3E9D7;   /* sandiges Weiß – Hellmodus-Hintergrund, kein reines Weiß */
  --sand-mittel: #E8DBBE;   /* etwas dunklerer Sandton – Zwischenkapitel im Hellmodus */
  --linie-hell:  rgba(238, 241, 234, .45);   /* helle Rahmenlinie – nur auf dauerhaft dunklen Flächen (Hero, Fuß, Speisekarte) */

  /* Rollen-Variablen: Dunkelmodus ist der Standard (kein data-theme nötig).
     Der Hellmodus überschreibt sie weiter unten in [data-theme="light"]. */
  --bg:           #0c1310;   /* Grundfläche der Seite */
  --bg-alt:       #14211A;   /* Zwischenkapitel-Fläche (abwechselnd zur Grundfläche) */
  --text:         var(--kalk);
  --text-akzent:  var(--sand);                /* Signatur u. Ä. auf der Grundfläche */
  --sand-text:    #D97A52;                    /* aufgehelltes Sandrot – WCAG-AA-Kontrast für kleine Schrift auf Dunkel */
  --linie-fein:   rgba(238, 241, 234, .14);   /* dezente Rahmenlinie auf der Grundfläche */
  --kopf-hg:      rgba(7, 11, 9, .82);        /* Kopfbereich, halbtransparent */
  --logo-kopf:    var(--kalk);                /* Logofarbe im Kopfbereich */

  /* Schriften bewusst ohne externe Anbieter (keine Google-Fonts-Einbindung).
     Palatino/Iowan geben den mediterranen Ton, die System-Sans die klare Struktur. */
  --schrift-titel: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --schrift-text:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --breite:  1180px;                        /* maximale Inhaltsbreite */
  --rand:    clamp(1.25rem, 5vw, 3rem);     /* seitlicher Abstand */
  --luft:    clamp(5rem, 11vw, 9rem);       /* Abstand zwischen Kapiteln */
  --radius:  20px;
}

/* Hellmodus: die ursprüngliche, helle Farbwelt der Seite */
:root[data-theme="light"] {
  --bg:          var(--sand-hell);
  --bg-alt:      var(--sand-mittel);
  --text:        #12241D;
  --text-akzent: var(--platz);
  --sand-text:   #A04426;   /* abgedunkeltes Sandrot – WCAG-AA-Kontrast für kleine Schrift auf Hell */
  --linie-fein:  rgba(18, 36, 29, .14);
  --kopf-hg:     rgba(243, 233, 215, .82);
  --logo-kopf:   var(--platz);
}


/* 2. Grundlagen ------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;          /* damit Anker nicht unter dem Kopf landen */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--schrift-text);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Sicherheitsnetz gegen lange Wörter ohne Leerzeichen (E-Mail-Adressen,
     der Instagram-Name) auf schmalen Bildschirmen. Bewusst kein
     overflow-x: hidden auf html/body – das würde den sticky Kopfbereich
     (.kopf) in vielen Browsern kaputt machen. */
  overflow-wrap: break-word;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; }

::selection { background: var(--sand); color: var(--kalk); }

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
  border-radius: 4px;
}

.skiplink {
  position: absolute;
  left: -9999px;
}
.skiplink:focus {
  left: var(--rand);
  top: 1rem;
  z-index: 100;
  background: var(--platz);
  color: var(--kalk);
  padding: .75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
}

.huelle {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--rand);
}

/* Kapitel-Abstände: nur EINE Regel, damit sich nichts gegenseitig aufhebt. */
.abschnitt { padding-block: var(--luft); }

.abschnitt--stein  { background: var(--bg-alt); }
.abschnitt--dunkel { background: var(--platz); color: var(--kalk); }


/* 3. Bausteine ------------------------------------------------------------- */

/* Augenbraue: kleine Zeile über der Überschrift, sitzt auf einer Kalklinie */
.augenbraue {
  margin: 0 0 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--linie-fein);
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand-text);
}
.augenbraue--hell {
  color: var(--kalk);
  border-bottom-color: var(--linie-hell);
  opacity: .85;
}

.titel {
  margin: 0;
  font-family: var(--schrift-titel);
  font-weight: 400;
  font-size: clamp(1.7rem, 1.15rem + 2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.kapitel { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.kapitel__text {
  margin: 1.1rem 0 0;
  font-size: 1.1rem;
  opacity: .8;
  max-width: 34rem;
}

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--platz);
  color: var(--kalk);
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, opacity .25s ease;
}
.knopf:hover { background: var(--platz-tief); transform: translateY(-2px); }

.knopf--klein { padding: .6rem 1.2rem; font-size: .88rem; }

.knopf--linie {
  background: transparent;
  color: var(--kalk);
  border-color: var(--linie-hell);
}
.knopf--linie:hover { background: rgba(238, 241, 234, .1); }

/* Sanftes Einblenden beim Scrollen – rein über CSS, ohne JavaScript.
   Browser ohne Unterstützung zeigen den Inhalt einfach sofort an. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .auftritt {
      animation: auftritt linear both;
      animation-timeline: view();
      animation-range: entry 5% entry 85%;
    }
  }
}
@keyframes auftritt {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}


/* 4. Kopfbereich ----------------------------------------------------------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--kopf-hg);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--linie-fein);
}

.kopf__innen {
  max-width: var(--breite);
  margin-inline: auto;
  padding: .7rem var(--rand);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo als Inline-SVG (siehe HTML) mit fill="currentColor" – passt sich damit
   verlässlich über die color-Eigenschaft an Hell-/Dunkelmodus an. */
/* Logo = Emblem (Bild, wechselt per Hell-/Dunkelmodus die Datei) + Wortmarke
   (Inline-SVG mit currentColor, siehe .kopf__logo-text). */
.kopf__logo { display: flex; align-items: center; gap: .65rem; line-height: 0; color: var(--logo-kopf); }
.kopf__logo-marke { display: block; height: 40px; width: auto; }
.kopf__logo-marke--dunkel { display: none; }
:root[data-theme="light"] .kopf__logo-marke--dunkel { display: block; }
:root[data-theme="light"] .kopf__logo-marke--hell   { display: none; }
.kopf__logo-text { display: block; height: 38px; width: auto; }

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.75rem;
}
.nav a {
  font-size: .93rem;
  text-decoration: none;
  color: var(--text);
  opacity: .78;
  padding-block: .25rem;
  border-bottom: 1px solid transparent;
  transition: opacity .2s ease, border-color .2s ease;
}
.nav a:hover { opacity: 1; border-bottom-color: var(--sand); }

/* Umschalter für Hell-/Dunkelmodus: rundes Icon, Sonne oder Mond je nach Modus */
.theme-umschalter { min-width: 44px; min-height: 44px; padding: .65rem; }
.theme-umschalter svg { display: block; }
.theme-umschalter .icon-mond { display: none; }
:root[data-theme="light"] .theme-umschalter .icon-sonne { display: none; }
:root[data-theme="light"] .theme-umschalter .icon-mond  { display: block; }


/* 5. Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 92vh;
  min-height: min(92svh, 860px);
  display: grid;
  align-items: end;
  padding: var(--rand);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--platz-tief);
  color: var(--kalk);
  isolation: isolate;
}

.hero__bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Abdunkeln, damit die Schrift auf jedem Foto lesbar bleibt */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
              rgba(14, 34, 25, .88) 0%,
              rgba(14, 34, 25, .45) 45%,
              rgba(14, 34, 25, .25) 100%);
}

/* Die Kalklinie: rahmt den Hero wie die Begrenzung eines Sandplatzes */
.hero::after {
  content: "";
  position: absolute;
  inset: clamp(.9rem, 2.2vw, 1.8rem);
  border: 1px solid var(--linie-hell);
  pointer-events: none;
}

/* Weichgezeichnete Fläche hinter dem Text: hält die Schrift lesbar, egal
   welches Foto später hinter dem Hero steht (helle Fotos, viel Struktur …). */
.hero__inhalt {
  position: relative;
  max-width: 40rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: rgba(14, 34, 25, .38);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.hero__titel {
  margin: 0;
  font-family: var(--schrift-titel);
  font-weight: 400;
  font-size: clamp(2.9rem, 1.4rem + 6.6vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.hero__titel-klein {
  display: inline-block;
  font-size: .46em;
  letter-spacing: .01em;
  opacity: .88;
  padding-left: .18em;
}

.hero__text {
  margin: 1.4rem 0 2.2rem;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  max-width: 30rem;
  opacity: .9;
}

.hero__knoepfe { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__knoepfe .knopf:not(.knopf--linie) { background: var(--kalk); color: var(--platz); }
.hero__knoepfe .knopf:not(.knopf--linie):hover { background: #fff; }

.hero__hinweis {
  position: absolute;
  right: clamp(2rem, 4vw, 3.4rem);
  bottom: clamp(3.5rem, 8vw, 6rem);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .55;
  writing-mode: vertical-rl;
}


/* 6. Willkommen ------------------------------------------------------------ */

.willkommen {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.willkommen__text { max-width: 34rem; }

.vorspann {
  font-family: var(--schrift-titel);
  font-size: clamp(1.25rem, 1.1rem + .8vw, 1.6rem);
  line-height: 1.45;
  margin: 2.4rem 0 1.3rem;
}
.willkommen__text p { margin: 0 0 1.1rem; }

.willkommen__text .signatur {
  margin: 2rem 0 0;
  font-family: var(--schrift-titel);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-akzent);
}

.willkommen__bild img {
  width: 100%;
  border-radius: var(--radius);
}


/* 7. Galerie --------------------------------------------------------------- */

.galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 15rem;
  gap: clamp(.75rem, 1.6vw, 1.25rem);
}

.galerie__feld {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--platz);
}
.galerie__feld--hoch  { grid-row: span 2; }
.galerie__feld--breit { grid-column: span 2; }

.galerie__feld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.galerie__feld:hover img { transform: scale(1.045); }

/* Bildunterschrift: ein, zwei Worte, ganz leicht unten links auf dem Foto.
   Der Text-Schatten statt einer Fläche hält es dezent und funktioniert auf
   jedem Foto – auch wenn dort später ein anderes Bild eingesetzt wird. */
.galerie__unterschrift {
  position: absolute;
  left: .9rem;
  bottom: .7rem;
  margin: 0;
  max-width: calc(100% - 1.8rem);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--kalk);
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55), 0 2px 14px rgba(0, 0, 0, .35);
  opacity: .92;
  pointer-events: none;
}


/* 8. Speisekarte ----------------------------------------------------------- */

/* Reiter (Tabs): eine Kategorie ist aktiv, die anderen liegen dahinter */
.speisekarte__reiter {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--linie-hell);
}

.speisekarte__tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--kalk);
  opacity: .58;
  font: inherit;
  font-size: .92rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .65rem 1.1rem;
  border-radius: 999px 999px 0 0;
  cursor: pointer;
  transition: opacity .2s ease, background-color .2s ease;
}
.speisekarte__tab:hover { opacity: .85; }
.speisekarte__tab[aria-selected="true"] {
  opacity: 1;
  background: rgba(238, 241, 234, .08);
  box-shadow: inset 0 -2px 0 var(--sand);
}

.speisekarte__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.speisekarte__panel[hidden] { display: none; }

.karte__titel {
  margin: 0 0 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--linie-hell);
  font-family: var(--schrift-titel);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -.01em;
}

.gericht { margin-bottom: 1.6rem; }

.gericht__zeile {
  display: flex;
  align-items: baseline;
  gap: .65rem;
}

.gericht__name {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.005em;
}

/* Die Punktlinie zwischen Gericht und Preis */
.gericht__punkte {
  flex: 1 1 auto;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(238, 241, 234, .35);
  transform: translateY(-.25em);
}

/* Preis(e): meist einer, manchmal zwei (z. B. zwei Größen) */
.gericht__preise {
  display: flex;
  align-items: baseline;
  gap: .9rem;
}
.gericht__preise--zwei {
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
}

.gericht__preis {
  font-size: .98rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  opacity: .9;
}
.gericht__preis-label {
  margin-right: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .6;
}

.gericht__text {
  margin: .3rem 0 0;
  font-size: .92rem;
  opacity: .62;
  max-width: 26rem;
}

.karte__fuss {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--linie-hell);
  font-size: .88rem;
  color: rgba(238, 241, 234, .7);
}


/* 9. Anfahrt --------------------------------------------------------------- */

.anfahrt {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.mapbox {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--platz);
  color: var(--kalk);
}
.mapbox iframe { width: 100%; height: 100%; border: 0; display: block; }

.anfahrt__link { margin: 1rem 0 0; font-size: .9rem; }
.anfahrt__link a { color: var(--sand-text); text-decoration: none; font-weight: 500; }
.anfahrt__link a:hover { text-decoration: underline; }

.anfahrt__untertitel {
  margin: 0 0 1.75rem;
  font-family: var(--schrift-titel);
  font-weight: 400;
  font-size: 1.7rem;
}

/* Der Weg vom Parkhaus ist eine echte Reihenfolge – deshalb Nummern. */
.weg { list-style: none; margin: 0; padding: 0; counter-reset: schritt; }

.weg__schritt {
  counter-increment: schritt;
  position: relative;
  padding: 0 0 1.75rem 3.4rem;
  border-left: 1px solid var(--linie-fein);
  margin-left: 1.1rem;
}
.weg__schritt:last-child { border-left-color: transparent; padding-bottom: 0; }

.weg__schritt::before {
  content: counter(schritt);
  position: absolute;
  left: -1.1rem;
  top: -.1rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--kalk);
  font-family: var(--schrift-titel);
  font-size: 1rem;
}

.weg__schritt h4 { margin: .25rem 0 .35rem; font-size: 1.05rem; }
.weg__schritt p  { margin: 0; font-size: .95rem; opacity: .72; }

.hinweiskasten {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.hinweiskasten h4 { margin: 0 0 .4rem; font-size: .95rem; }
.hinweiskasten p  { margin: 0; font-size: .93rem; opacity: .75; }

/* .abschnitt--dunkel ist immer dunkel (unabhängig vom Hell-/Dunkelmodus) und
   erzwingt helle Schrift – der Kasten braucht hier also auch einen fest
   dunklen Hintergrund statt des mit dem Modus wechselnden --bg-alt. */
.abschnitt--dunkel .hinweiskasten { background: var(--platz-tief); }


/* 10. Kontakt -------------------------------------------------------------- */

.kontakt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.kontakt__block h3 {
  margin: 0 0 1.1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--linie-fein);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .6;
}
.kontakt__block a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--linie-fein); }
.kontakt__block a:hover { border-bottom-color: var(--sand); }
.kontakt__block .knopf { margin-top: 1.25rem; border-bottom: 0; color: var(--kalk); }

.kontakt address { font-style: normal; line-height: 1.8; }

.zeiten { margin: 0; display: grid; grid-template-columns: 1fr; gap: .1rem; }
.zeiten dt { font-weight: 600; margin-top: .7rem; }
.zeiten dd { margin: 0; opacity: .72; font-variant-numeric: tabular-nums; }


/* 11. Fußbereich ----------------------------------------------------------- */

.fuss {
  background: var(--platz-tief);
  color: var(--kalk);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.fuss__innen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
}
.fuss__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  opacity: .9;
  color: var(--kalk);   /* Fuß ist immer dunkel, daher unabhängig vom Modus konstant hell */
}
.fuss__logo-marke { display: block; height: 34px; width: auto; }
.fuss__logo-text  { display: block; height: 32px; width: auto; }
.fuss__nav { display: flex; gap: 1.5rem; margin-left: auto; }
.fuss__nav a { font-size: .9rem; text-decoration: none; opacity: .75; }
.fuss__nav a:hover { opacity: 1; }
.fuss__zeile { margin: 0; font-size: .82rem; opacity: .5; width: 100%; }


/* 12. Kleine Bildschirme --------------------------------------------------- */

/* Logo + fünf Nav-Punkte + Hell-/Dunkel-Knopf + Reservieren-Knopf brauchen
   zusammen knapp 1100px in einer Zeile. Darunter wird die Navigation eine
   eigene, scrollbare Zeile – sonst würde der Kopfbereich umbrechen/
   überlaufen (betrifft u. a. iPads im Querformat, 1024px breit). */
@media (max-width: 1150px) {
  .kopf__innen { flex-wrap: wrap; gap: .75rem 1rem; }
  .kopf .knopf--klein { margin-left: auto; }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: .3rem;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { white-space: nowrap; }
}

@media (max-width: 900px) {
  .willkommen,
  .anfahrt { grid-template-columns: 1fr; }

  .willkommen__bild { order: -1; }

  .kontakt { grid-template-columns: 1fr 1fr; }

  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 12rem; }
}

@media (max-width: 620px) {
  .kopf__logo-marke { height: 33px; }
  .kopf__logo-text  { height: 31px; }
  .nav a { font-size: .88rem; }

  /* Auch die Speisekarten-Reiter werden bei vielen Kategorien scrollbar */
  .speisekarte__reiter {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .speisekarte__reiter::-webkit-scrollbar { display: none; }

  .kontakt { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: 1fr; grid-auto-rows: 14rem; }
  .galerie__feld--hoch,
  .galerie__feld--breit { grid-row: span 1; grid-column: span 1; }

  .hero__hinweis { display: none; }
  .fuss__nav { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}


/* 13. Rechtstexte (Impressum / Datenschutz) -------------------------------- */

.rechtstext { max-width: 46rem; }
.rechtstext h2 {
  margin: 2.75rem 0 .75rem;
  font-family: var(--schrift-titel);
  font-weight: 400;
  font-size: 1.5rem;
}
.rechtstext p  { margin: 0 0 1rem; }
.rechtstext ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.rechtstext-stand { margin-top: 2.5rem; font-size: .85rem; opacity: .55; }
