:root {
  --schwarz: #000000;
  --weiss: #FFFFFF;
  --text-dunkel: #111827;
  --gruen: #008000;
  --orange: #FF4500;
  --grau: #F3F4F6;
  --rahmen: #0B0C10;
  --absatz: 20px;
}
@media (min-width: 1024px) { :root { --absatz: 28px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--schwarz); color: var(--weiss);
  font-family: 'Quicksand', ui-sans-serif, system-ui, sans-serif; font-size: 16px; line-height: 24px;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, blockquote { font-family: 'Dancing Script', cursive; font-weight: 500; margin: 0; }
p { margin: 0 0 var(--absatz); }
p:last-child { margin-bottom: 0; }
.text { font-size: 16px; line-height: 24px; }
@media (min-width: 1024px) { .text { font-size: 18px; line-height: 28px; } }

.container { width: 100%; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px)  { .container { max-width: 640px;  padding: 0 24px; } }
@media (min-width: 768px)  { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

.kopf { background: var(--weiss); color: var(--schwarz); }
.kopf .container { display: flex; align-items: center; justify-content: center; height: 80px; }
.kopf .logo { display: block; color: var(--schwarz); }
.kopf .logo svg { display: block; height: 46px; width: auto; }

.ueber .container { padding-top: 48px; padding-bottom: 48px; }
.ueber .zeilen { display: flex; flex-direction: column; gap: 40px; }
.ueber .bild { aspect-ratio: 16 / 9; width: 100%; overflow: hidden; border-radius: 8px; }
.ueber .bild img { width: 100%; height: 100%; object-fit: cover; }
.ueber h2 { font-size: 26px; line-height: 34px; margin-bottom: 20px; }
@media (min-width: 768px) { .ueber .bild { border-radius: 12px; } }
@media (min-width: 1024px) {
  .ueber .container { padding-top: 80px; padding-bottom: 80px; }
  .ueber .zeilen { flex-direction: row; gap: 80px; align-items: flex-start; }
  .ueber .bild { width: 50%; flex: none; border-radius: 16px; }
  .ueber .inhalt { flex: 1; max-width: 960px; }
  .ueber h2 { font-size: 32px; line-height: 40px; margin-bottom: 28px; }
}

.leistungen .container, .highlights .container { padding-top: 32px; padding-bottom: 32px; }
.titel { text-align: center; font-size: 36px; line-height: 44px; margin: 0 auto 24px; }
.kacheln { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.kachel { width: 100%; display: flex; flex-direction: column; text-align: center; }
.kachel .bild { aspect-ratio: 16 / 9; width: 100%; overflow: hidden; border-radius: 4px; }
.kachel .bild img { width: 100%; height: 100%; object-fit: cover; }
.kachel .inhalt { padding: 24px 0; }
.kachel h3 { font-size: 26px; line-height: 34px; margin-bottom: 16px; }
.highlights .kachel .bild { aspect-ratio: 1 / 1; }
.highlights .preis { display: block; margin-top: 12px; font-weight: 700; font-size: 20px; line-height: 28px; color: #4ade80; }
@media (min-width: 640px) {
  .kachel { width: calc((100% - 40px) / 2); }
  .kachel .bild { border-radius: 6px; }
}
@media (min-width: 1024px) {
  .leistungen .container, .highlights .container { padding-top: 48px; padding-bottom: 48px; }
  .titel { font-size: 48px; line-height: 56px; }
  .kachel { width: calc((100% - 80px) / 3); }
  .kachel .bild { border-radius: 8px; }
  .kachel h3 { font-size: 32px; line-height: 40px; }
  .highlights .kachel { width: calc((100% - 120px) / 4); }
}
@media (min-width: 1280px) { .highlights .container { padding-top: 80px; padding-bottom: 80px; } }

.galerie { padding: 48px 0; position: relative; }
.galerie .spur {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  --breite: min(1049px, 84vw);
  padding: 0 calc(50% - var(--breite) / 2);
}
.galerie .spur::-webkit-scrollbar { display: none; }
.galerie .dia {
  flex: none; width: var(--breite); aspect-ratio: 3 / 2; scroll-snap-align: center;
  border-radius: 4px; overflow: hidden; background: #111; cursor: zoom-in; padding: 0; border: 0;
}
.galerie .dia img { width: 100%; height: 100%; object-fit: cover; }
.galerie .pfeil {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0, 0, 0, 0.55); color: var(--weiss); display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s;
}
.galerie .pfeil:hover { background: rgba(0, 0, 0, 0.8); }
.galerie .pfeil svg { width: 22px; height: 22px; }
.galerie .zurueck { left: 12px; }
.galerie .weiter { right: 12px; }
.galerie .punkte { display: flex; justify-content: center; gap: 20px; margin-top: 16px; padding: 0; list-style: none; }
.galerie .punkte button { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: #f9fafb; cursor: pointer; }
.galerie .punkte button[aria-current="true"] { background: #111827; box-shadow: 0 0 0 4px #e5e7eb; }
@media (min-width: 1024px) {
  .galerie { padding: 80px 0; }
  .galerie .spur { gap: 40px; --breite: min(1049px, 55vw); }
  .galerie .pfeil { width: 68px; height: 68px; }
  .galerie .zurueck { left: 20px; }
  .galerie .weiter { right: 20px; }
  .galerie .punkte { margin-top: 40px; }
}

.lichtbox { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, 0.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lichtbox.offen { display: flex; }
.lichtbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; }
.lichtbox .zu { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.15); color: var(--weiss); font-size: 28px; line-height: 44px; cursor: pointer; }

.stimme .container { padding-top: 64px; padding-bottom: 64px; }
.stimme figure { margin: 0 auto; max-width: 1024px; display: flex; flex-direction: column; gap: 16px; text-align: center; align-items: center; }
.stimme blockquote { font-size: 26px; line-height: 34px; }
.stimme figcaption { font-size: 20px; line-height: 30px; }
@media (min-width: 1024px) {
  .stimme .container { padding-top: 128px; padding-bottom: 128px; }
  .stimme blockquote { font-size: 32px; line-height: 40px; }
  .stimme figcaption { font-size: 24px; line-height: 36px; }
}

.ort { background: var(--weiss); color: var(--text-dunkel); }
.ort .container { padding-top: 32px; padding-bottom: 32px; }
.ort .zeilen { display: flex; flex-direction: column; gap: 40px; }
.ort .karte-box { width: 100%; height: 160px; border-radius: 8px; overflow: hidden; background: #1a1a1a; }
.ort .anfahrt { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.ort h2 { font-size: 26px; line-height: 34px; }
.ort .adresse { margin: 0; font: inherit; white-space: pre-wrap; }
.ort .route { display: inline-block; color: var(--gruen); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 768px) {
  .ort .karte-box { height: 288px; border-radius: 12px; }
}
@media (min-width: 1024px) {
  .ort .container { padding-top: 48px; padding-bottom: 48px; }
  .ort .zeilen { flex-direction: row; gap: 80px; }
  .ort .karte-box { width: 50%; flex: none; height: 384px; border-radius: 16px; }
  .ort .anfahrt { width: 50%; }
  .ort h2 { font-size: 32px; line-height: 40px; }
}
.leaflet-container { font-family: 'Quicksand', ui-sans-serif, system-ui, sans-serif; background: #1a1a1a; }
.karte-marke { background: none; border: 0; }
.leaflet-container .leaflet-control-container .leaflet-control-attribution { font-size: 9px; line-height: 1; padding: 2px 5px; margin: 0; background: rgba(0, 0, 0, 0.55); color: #bbb; }
.leaflet-container .leaflet-control-container .leaflet-control-attribution a { color: #bbb; text-decoration: none; }
.leaflet-bar a { background: #2a2a2a; color: #f5f5f5; border-bottom-color: #444; }
.leaflet-bar a:hover { background: #3a3a3a; }

.zeiten { background: var(--weiss); color: var(--rahmen); }
.zeiten .container { display: flex; justify-content: center; padding-top: 0; padding-bottom: 0; }
.zeiten-tafel { width: 308px; max-width: 100%; border: 4px solid var(--rahmen); border-radius: 3px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.085); }
.zeiten-tafel h2 { font-family: 'Quicksand', ui-sans-serif, system-ui, sans-serif; font-weight: 600; font-size: 18px; line-height: 18px; padding: 10px; text-align: center; }
.zeiten-tafel ul { list-style: none; margin: 0; padding: 0; }
.zeiten-tafel li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 15px; font-size: 16px; line-height: 16px; font-weight: 500; }
.zeiten-tafel .tag { display: flex; align-items: center; gap: 5px; }
.zeiten-tafel .heute { display: none; font-size: 10px; line-height: 10px; padding: 4px 6px; border-radius: 20px; background: rgba(0, 128, 0, 0.12); color: var(--gruen); }
.zeiten-tafel li.ist-heute .heute { display: inline-block; }
.zeiten-tafel .stunden { display: flex; flex-direction: column; gap: 5px; text-align: right; }
.zeiten-tafel .status { padding: 15px; text-align: center; font-size: 16px; line-height: 16px; font-weight: 500; }
.zeiten-tafel .status.offen { color: var(--gruen); }

.fuss .container { padding-top: 48px; padding-bottom: 48px; display: flex; flex-direction: column; gap: 32px; }
.fuss .marke { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.fuss .marke svg { display: block; height: 56px; width: auto; }
.fuss .gruss { font-size: 18px; line-height: 28px; }
.fuss .kontakt { font-size: 16px; line-height: 24px; opacity: 0.85; }
.fuss nav { display: flex; flex-wrap: wrap; gap: 24px; }
.fuss nav a { display: inline-block; padding-bottom: 6px; border-bottom: 2px solid transparent; text-decoration: none; transition: border-color 0.3s; }
.fuss nav a:hover { border-bottom-color: currentColor; }
@media (min-width: 1024px) {
  .fuss .container { padding-top: 80px; padding-bottom: 80px; flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

.textseite { background: var(--weiss); color: var(--text-dunkel); min-height: calc(100vh - 80px); }
.textseite .container { padding-top: 48px; padding-bottom: 48px; }
.textseite .inhalt { max-width: 1024px; font-size: 18px; line-height: 28px; }
.textseite h1 { font-size: 40px; line-height: 48px; margin-bottom: 28px; }
.textseite h3 { font-family: 'Quicksand', ui-sans-serif, system-ui, sans-serif; font-weight: 700; font-size: 20px; line-height: 28px; margin: 36px 0 12px; }
.textseite a { text-decoration: underline; text-underline-offset: 3px; }
.textseite ul { padding-left: 24px; margin: 0 0 var(--absatz); }
.textseite .hinweis { padding: 12px 16px; border-left: 4px solid var(--orange); background: #fff4ee; margin-bottom: 28px; }
.textseite .offen { background: #fff4ee; padding: 0 4px; }
@media (min-width: 1024px) { .textseite .container { padding-top: 80px; padding-bottom: 80px; } }
