/* touristinfo oldenburg | Platzhalterseite
   Farben im Original aus dem Designsystem von oldenburg.de (OKLCH),
   mit Hex-Werten als Rückfallebene
   Schrift: Cairo, lokal gehostet
   Aufbau: mobile first, Kachelraster
   Zielgruppe: Touristen                                       */

/* ---------- Schrift ---------- */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('fonts/cairo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('fonts/cairo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Palette ---------- */

:root {
  --gold: #feca00;        /* oldb-yellow-500 */
  --gold-deep: #c99900;   /* oldb-yellow-550 */
  --red: #bb1f2e;         /* oldb-red-500  */
  --red-dark: #8f0018;    /* oldb-red-600  */
  --red-deep: #2e0003;    /* oldb-red-950  */
  --gold-soft: #fedb55;   /* aufgehelltes Gelb für den Auslauf im Kopf */
  --black-08: #ebebeb;    /* Schwarz 8 Prozent, Fußbereich */
  --paper: #ffffff;
  --white: #ffffff;

  --gap: 0.75rem;
  --radius: 18px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@supports (color: oklch(50% 0.1 20)) {
  :root {
    --gold: oklch(86.03% 0.1758 89.8);
    --gold-deep: oklch(70.72% 0.1657 89.8);
    --red: oklch(51.29% 0.1888 23);
    --red-dark: oklch(40.77% 0.1682 23);
    --red-deep: oklch(18.9% 0.0774 23);
  }
}

@supports (color: color-mix(in srgb, red 50%, white)) {
  :root {
    --gold-soft: color-mix(in srgb, var(--gold) 78%, white);
  }
}

/* ---------- Grundlage ---------- */

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--red-deep);
  font-family: 'Cairo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.15rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Hamburgermenü ---------- */

.burger {
  position: fixed;
  top: 0.85rem;
  right: 0.9rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(46, 0, 3, 0.26);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.burger:hover,
.burger:focus-visible {
  transform: scale(1.06);
  outline: none;
}

.burger span {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  border-radius: 1px;
  background: var(--red-deep);
  transition: transform 0.32s var(--ease), opacity 0.2s var(--ease);
}

.burger span:nth-child(1) { transform: translateY(-6px); }
.burger span:nth-child(3) { transform: translateY(6px); }

body.menu-open .burger { background: var(--gold); }
body.menu-open .burger span:nth-child(1) { transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--red);
  color: var(--white);
  padding: 5.4rem 1.15rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
  overflow-y: auto;
}

body.menu-open .menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu .kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.1rem;
  max-width: 1180px;
}

.menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.menu a small {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--gold);
  padding-left: 0.4rem;
  outline: none;
}

.menu a[aria-current='page'] {
  color: var(--gold);
}

.menu .soon {
  margin: 1.6rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-width: 46ch;
}

@media (min-width: 620px) {
  .burger { top: 1.1rem; right: 1.3rem; width: 52px; height: 52px; }
  .burger span { left: 16px; }
  .menu { padding: 6.2rem 1.15rem 2.4rem; }
  .menu ul { margin-left: auto; margin-right: auto; }
  .menu a { font-size: 1.9rem; }
  .menu .kicker { max-width: 1180px; margin-left: auto; margin-right: auto; }
  .menu .soon { max-width: 1180px; margin-left: auto; margin-right: auto; }
}

/* ---------- Kopf ---------- */

.hero {
  position: relative;
  background: var(--gold-soft);
  color: var(--red-deep);
  padding: 2.6rem 0 3.4rem;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

/* Das Foto scheint als Gelbduoton durch:
   Graustufen plus Mischmodus multiply auf der gelben Fläche.        */

.hero .photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero .photo.is-on {
  opacity: 1;
}

/* Erstes Motiv fest, die weiteren setzt slides.js nach */

.hero .photo--theater {
  background-image: url('img/theater-m.jpg');
  background-image: image-set(
    url('img/theater-m.webp') type('image/webp'),
    url('img/theater-m.jpg') type('image/jpeg')
  );
}


/* Schleier: oben dunkel für die Lesbarkeit, unten reines Gelb
   für den ruhigen Übergang in die Kacheln.                          */

.hero .veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(254, 202, 0, 0) 0%,
      rgba(254, 202, 0, 0) 30%,
      rgba(254, 202, 0, 0.29) 52%,
      rgba(254, 202, 0, 0.47) 68%,
      rgba(254, 202, 0, 0.53) 82%,
      rgba(254, 202, 0, 0.53) 100%
    );
  /* Gelb wird auf das Foto multipliziert */
  mix-blend-mode: multiply;
  /* Alternative, allein einfärbend: mix-blend-mode: color; */
}

/* Die untere Ausblendung ist entfernt, das Foto läuft bis zur Kante. */

.hero .fade {
  display: none;
}

.hero > .wrap {
  position: relative;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(46, 0, 3, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 100px;
  padding: 0.34rem 0.8rem 0.3rem;
}

.badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(254, 202, 0, 0.8);
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(254, 202, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 202, 0, 0); }
}

.mark {
  margin: 1.5rem 0 0;
  text-shadow: 0 2px 24px rgba(46, 0, 3, 0.42);
  font-weight: 800;
  font-size: clamp(2.5rem, 13.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.mark span {
  display: block;
}

.mark .top {
  color: var(--white);
}

.mark .light {
  font-weight: 300;
  color: var(--white);
}

.claim {
  margin: 1.35rem 0 0;
  max-width: 30ch;
  font-size: 1.24rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(46, 0, 3, 0.5);
}

.note {
  margin: 0.17rem 0 0;
  max-width: 42ch;
  line-height: 1.45;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(46, 0, 3, 0.5);
}

/* ---------- Wetter im Kopf ----------
   Sitzt oben links, spiegelbildlich zum Menüknopf oben rechts.
   Bleibt verborgen, solange der Wert fehlt, damit der Kopf ruhig bleibt. */

/* Die Anzeige übernimmt die Glaspille des früheren Hinweises im Kopf
   und führt als Verweis auf die Wetterseite.                          */

.wetter {
  gap: 0.46rem;
  padding: 0.36rem 0.62rem 0.34rem 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.wetter:hover,
.wetter:focus-visible {
  background: rgba(46, 0, 3, 0.52);
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.wetter[hidden] {
  display: none;
}

.wetter-ico {
  flex: none;
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wetter-grad {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.wetter-lage {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.wetter-pfeil {
  flex: none;
  width: 15px;
  height: 15px;
  margin-left: 0.1rem;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
  /* Der Pfeil winkt in Ruhe zweimal und lädt damit zum Klicken ein.
     Die lange Pause dazwischen hält den Kopf der Seite ruhig.        */
  animation: pfeil-winkt 3.4s var(--ease) infinite;
}

@keyframes pfeil-winkt {
  0%, 62% {
    transform: translateX(0);
    stroke: rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: translateX(5px);
    stroke: var(--gold);
  }
  78% {
    transform: translateX(0);
    stroke: rgba(255, 255, 255, 0.85);
  }
  86% {
    transform: translateX(5px);
    stroke: var(--gold);
  }
  94%, 100% {
    transform: translateX(0);
    stroke: rgba(255, 255, 255, 0.7);
  }
}

/* Beim Berühren übernimmt die Handbewegung, die Schleife pausiert solange. */
.wetter:hover .wetter-pfeil,
.wetter:focus-visible .wetter-pfeil {
  animation: none;
  transform: translateX(2px);
  stroke: var(--gold);
}

/* ---------- Kachelraster ---------- */

.grid {
  display: grid;
  /* minmax(0, 1fr) hält beide Spalten auf genau 50 Prozent, auch wenn ein
     langes Wort wie Sehenswürdigkeiten breiter wäre als die Spalte */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  margin: -1.7rem 0 0;
  padding-bottom: 2.8rem;
}

.tile {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  min-height: 132px;
  padding: 0.95rem 1rem 0.9rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(46, 0, 3, 0.12), 0 10px 24px rgba(46, 0, 3, 0.14);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.tile::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.tile:hover,
.tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(46, 0, 3, 0.16), 0 18px 36px rgba(46, 0, 3, 0.22);
  outline: none;
}

.tile:hover::after,
.tile:focus-visible::after {
  transform: scaleX(1);
}

.tile .ico {
  width: 27px;
  height: 27px;
  /* Weiß hält das Zeichen ruhig, das Gelb bleibt der Überschrift vorbehalten */
  stroke: var(--white);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  /* Gelb auf Rot setzt die Überschrift ab und führt den Blick zuerst dorthin */
  color: var(--gold);
  /* lange Wörter trennen sauber statt die Kachel zu sprengen */
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

.tile p {
  margin: 0.22rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* ---------- Aktuelle Angebote ---------- */

.angebote {
  padding: 0.6rem 0 3rem;
}

.abschnitt {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}

.abschnitt h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--red);
}

.abschnitt span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.karte {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(46, 0, 3, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.karte:hover,
.karte:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(46, 0, 3, 0.14);
  outline: none;
}

/* Medienfläche, hier als Platzhalter mit Farbverlauf */

.karte .medium {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--gold) 0%, var(--red) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.karte .medium picture,
.karte .medium img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.karte .medium svg {
  width: 34%;
  height: auto;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.karte .medium .platz {
  position: absolute;
  left: 0.55rem;
  bottom: 0.5rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.karte .marke {
  position: absolute;
  top: 0.5rem;
  left: 0.55rem;
  padding: 0.16rem 0.45rem;
  border-radius: 100px;
  background: rgba(46, 0, 3, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.karte .film {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 0, 3, 0.55);
  color: var(--white);
}

.karte .film svg {
  width: 10px;
  opacity: 1;
  fill: currentColor;
  stroke: none;
}

.karte .text {
  padding: 0.65rem 0.75rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.karte h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  /* Rot hebt den Namen des Betriebs aus dem hellen Kästchen heraus */
  color: var(--red);
}

.karte p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(46, 0, 3, 0.78);
}

.karte .zeit {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red);
}

@media (min-width: 620px) {
  .feed { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; }
  .abschnitt h2 { font-size: 1.6rem; }
  .karte h3 { font-size: 1rem; }
  .karte p { font-size: 0.85rem; }
}

@media (min-width: 900px) {
  .feed { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
  .angebote { padding-bottom: 4rem; }
}

/* ---------- Rechtsseiten ---------- */

.doc {
  padding: 2.2rem 0 3rem;
}

.doc .back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.doc h1 {
  margin: 1.4rem 0 0;
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--red);
}

.doc h2 {
  margin: 2.1rem 0 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--red);
}

.doc p,
.doc address {
  margin: 0.7rem 0 0;
  max-width: 62ch;
  font-style: normal;
  color: rgba(46, 0, 3, 0.78);
}

.doc address strong {
  color: var(--red-deep);
}

.doc h3 {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--red-deep);
}

.doc .quellen {
  margin: 0.6rem 0 0;
  padding: 0;
  max-width: 62ch;
  list-style: none;
  color: rgba(46, 0, 3, 0.78);
}

.doc .quellen li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1rem;
  font-size: 0.94rem;
  line-height: 1.5;
}

.doc .quellen li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.doc .todo {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  background: rgba(187, 31, 46, 0.1);
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- Mediadaten ---------- */

.doc .lead {
  margin: 1.1rem 0 0;
  max-width: 52ch;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red-deep);
}

.doc table {
  width: 100%;
  margin: 1rem 0 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.doc table th,
.doc table td {
  text-align: left;
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(46, 0, 3, 0.14);
  vertical-align: top;
}

.doc table th {
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
}

.doc table td.price {
  font-weight: 800;
  color: var(--red-deep);
  white-space: nowrap;
}

.doc .scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.doc .facts {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.doc .facts li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(46, 0, 3, 0.82);
}

.doc .facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--red);
}

.doc .box {
  margin: 1.6rem 0 0;
  padding: 1.1rem 1.2rem;
  background: var(--gold);
  border-radius: var(--radius);
  color: var(--red-deep);
}

.doc .box h2 {
  margin: 0;
  color: var(--red-deep);
}

.doc .box p {
  color: var(--red-deep);
}

/* ---------- Fuß ---------- */

.foot {
  background: var(--black-08);
  color: var(--red-deep);
  padding: 2rem 0 2.4rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.foot strong {
  display: block;
  color: var(--red);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.foot nav {
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
}

.foot a {
  color: var(--red-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(187, 31, 46, 0.55);
  padding-bottom: 1px;
}

.foot a:hover,
.foot a:focus-visible {
  color: var(--red);
  border-bottom-color: var(--red);
}

.foot .love {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin: 1.4rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red-deep);
}

.foot .love svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  flex: 0 0 auto;
}

.foot .fine {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(46, 0, 3, 0.7);
}

/* Zeile ganz unten, unterhalb des Fußbereichs */

.subfoot {
  background: var(--black-08);
  border-top: 1px solid rgba(46, 0, 3, 0.12);
  padding: 0.85rem 0 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.subfoot a {
  color: rgba(46, 0, 3, 0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(187, 31, 46, 0.4);
  padding-bottom: 1px;
}

.subfoot a:hover,
.subfoot a:focus-visible {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ---------- Wetterseite ---------- */

.wetterseite section {
  margin-top: 2.4rem;
}

.wetterseite .hinweis {
  margin: 1.4rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: rgba(187, 31, 46, 0.09);
  color: var(--red);
  font-weight: 600;
}

.wetterseite .fussnote {
  margin: 0.7rem 0 0;
  max-width: 62ch;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(46, 0, 3, 0.6);
}

/* Aktueller Stand als roter Blickfang */

.jetzt {
  margin-top: 1.5rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(46, 0, 3, 0.12), 0 12px 28px rgba(46, 0, 3, 0.16);
}

.jetzt-kopf {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jetzt-ico {
  flex: none;
  width: 62px;
  height: 62px;
  stroke: var(--gold);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Alle Zeilen im roten Kasten stehen in Weiß. Der Selektor nennt .doc mit,
   damit er die allgemeine Textfarbe der Unterseiten sicher übernimmt.
   Gelb bleibt allein dem Wettersymbol vorbehalten.                        */
.doc .jetzt p {
  max-width: none;
  color: var(--white);
}

.doc .jetzt-grad {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.doc .jetzt-lage {
  margin: 0.24rem 0 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.doc .jetzt-zeit {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
}

.jetzt-werte {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.1rem 1rem;
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.jetzt-werte div {
  padding: 0.42rem 0;
  min-width: 0;
}

.jetzt-werte dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
}

.jetzt-werte dd {
  margin: 0.1rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: break-word;
}

/* Tagesverlauf als Streifen zum Schieben */

.stunden {
  display: flex;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding: 0 0 0.4rem;
  list-style: none;
}

.stunden li {
  flex: none;
  width: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.7rem 0.3rem 0.8rem;
  border-radius: 14px;
  background: var(--black-08);
  text-align: center;
}

.stunden .std {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(46, 0, 3, 0.62);
}

.stunden .std-ico {
  width: 26px;
  height: 26px;
  stroke: var(--red);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stunden .std-grad {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stunden .std-regen {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
}

/* Sieben Tage als Zeilen */

.woche {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.woche li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(46, 0, 3, 0.12);
}

.woche li.ist-heute {
  font-weight: 800;
}

.woche .tag-name {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
  font-weight: 700;
  min-width: 0;
}

.woche .tag-name small {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(46, 0, 3, 0.55);
}

.woche .tag-ico {
  width: 27px;
  height: 27px;
  stroke: var(--red);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.woche .tag-lage {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(46, 0, 3, 0.72);
  min-width: 0;
  overflow-wrap: break-word;
}

.woche .tag-temp {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34rem;
  font-size: 0.98rem;
  white-space: nowrap;
}

.woche .tag-temp b {
  font-weight: 800;
}

.woche .tag-temp i {
  font-style: normal;
  font-weight: 600;
  color: rgba(46, 0, 3, 0.5);
}

.woche .tag-extra {
  grid-column: 1 / -1;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--red);
}

/* ---------- Größere Schirme ---------- */

@media (min-width: 620px) {
  body { font-size: 18px; }
  .hero { min-height: 66vh; }
  .hero .photo--theater {
    background-image: url('img/theater-d.jpg');
    background-image: image-set(
      url('img/theater-d.webp') type('image/webp'),
      url('img/theater-d.jpg') type('image/jpeg')
    );
  }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; }
  .tile { min-height: 152px; }
  .wetter { font-size: 0.86rem; padding: 0.4rem 0.72rem 0.38rem 0.68rem; }
  .wetter-ico { width: 22px; height: 22px; }
  .wetter-grad { font-size: 1rem; }

  .jetzt { padding: 1.6rem 1.6rem 1.7rem; }
  .jetzt-ico { width: 76px; height: 76px; }
  .doc .jetzt-grad { font-size: 3.1rem; }
  .jetzt-werte { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stunden li { width: 76px; }
  .woche li { grid-template-columns: minmax(0, 0.9fr) 34px minmax(0, 1fr) minmax(0, 1.5fr) auto; }
  .woche .tag-extra { grid-column: auto; text-align: right; }
  .hero { padding: 3.4rem 0 4.2rem; }
}

@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: -3.4rem; }
  .hero { padding: 4.4rem 0 5.6rem; }

  /* Kopf zweispaltig: Wortmarke links, Text rechts */
  .hero .wrap {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    column-gap: 3.6rem;
    align-items: start;
  }
  .badge { grid-column: 1 / -1; justify-self: start; }
  .mark { grid-column: 1; grid-row: 2 / span 2; align-self: end; margin-top: 1.3rem; }
  .claim { grid-column: 2; grid-row: 2; margin-top: 2.1rem; }
  .note { grid-column: 2; grid-row: 3; margin-top: 0.22rem; }
}

/* ---------- Rücksicht auf Bewegungsvorlieben ---------- */

@media (prefers-reduced-motion: reduce) {
  .hero .photo { transition: none; }
  .badge i { animation: none; }
  .tile { transition: none; }
  .wetter-pfeil { animation: none; }
}
