/* ============ Schriften (lokal) ============ */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/montserrat-400.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/montserrat-500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/montserrat-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/montserrat-700.woff2') format('woff2'); }

/* ============ Grundwerte ============ */
:root {
  --beige: #F2F2ED;
  --hell: #F7F7F7;
  --gruen: #06310E;
  --gruen-hover: #1A5A26;
  --text: #191919;
  --spur-breite: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--beige);
}

img { display: block; max-width: 100%; }

.spur {
  max-width: var(--spur-breite);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Knopf (Pill, wie Original) ============ */
.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gruen);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 100px;
  padding: 9px 44px;
  min-height: 73px;
  border: 0;
  cursor: pointer;
  transition: background-color .25s ease;
}

.knopf:hover { background: var(--gruen-hover); }

/* ============ Kopfbereich ============ */
.kopf { background: var(--beige); }

.kopf__innen {
  max-width: var(--spur-breite);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.kopf__logo { flex: 0 0 auto; }
.kopf__logo img { height: 100px; width: auto; }

.kopf__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.kopf__nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}

.kopf__nav a:hover,
.kopf__nav a.aktiv { border-bottom-color: var(--text); }

.kopf__rechts {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.kopf__social { color: var(--text); display: inline-flex; }
.kopf__social:hover { color: var(--gruen); }

.kopf__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.kopf__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* ============ Hero (Parallax-Bildband) ============ */
.held {
  background: #000;
  overflow: hidden;
}

.held__bild { height: 1000px; overflow: hidden; }

.held__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.1);
  will-change: transform;
}

/* ============ Claim ============ */
.claim {
  background: var(--beige);
  padding: 90px 0 60px;
  text-align: center;
}

.claim__titel {
  font-weight: 400;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.4;
  letter-spacing: 2px;
  color: var(--gruen);
}

.claim__aktion { margin-top: 20px; }

/* ============ Über uns ============ */
.ueber {
  background: var(--beige);
  padding: 60px 0 100px;
}

.ueber__raster {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.ueber__titel {
  font-weight: 400;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.4;
  letter-spacing: 2px;
}

.ueber__text p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
}

.ueber__text p + p { margin-top: 24px; }

.ueber__credit,
.ueber__text p.ueber__credit { font-size: 10px; margin-top: 32px; }

.ueber__credit a { color: var(--text); }

/* ============ Bildband ============ */
.band {
  background: var(--hell);
  padding: 100px 0;
}

.band__bild { aspect-ratio: 2 / 1; overflow: hidden; }

.band__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
}

/* ============ Besuchen Sie uns ============ */
.besuch {
  background: var(--beige);
  padding: 60px 0 10px;
}

.besuch__titel {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.4;
  letter-spacing: 2px;
}

/* ============ Karten Hotel / Restaurant ============ */
.karten {
  background: var(--beige);
  padding: 70px 0 60px;
}

.karten__raster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.karte { text-align: center; }

.karte__bild { aspect-ratio: 2 / 1; overflow: hidden; }

.karte__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.karte__titel {
  margin-top: 24px;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  letter-spacing: 2px;
}

.karte__aktion { margin-top: 20px; }

/* ============ Galerie + Feiern ============ */
.feier {
  background: var(--beige);
  padding: 60px 0 50px;
}

.galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.galerie__bild {
  aspect-ratio: 100 / 94;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

.galerie__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feier__titel {
  margin-top: 60px;
  text-align: center;
  font-weight: 400;
  font-size: clamp(23px, 3vw, 29px);
  line-height: 1.6;
  letter-spacing: 2px;
}

.feier__text {
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.feier__aktion { margin-top: 24px; text-align: center; }

/* ============ Abstand vor dem Fußbereich ============ */
.abstand { height: 160px; background: var(--beige); }

/* ============ Fußbereich ============ */
.fuss {
  background: var(--beige);
  padding: 20px 0 60px;
}

.fuss__innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.fuss__logo img { height: 80px; width: auto; }

.fuss__text {
  font-size: 14px;
  text-align: center;
}

.fuss__nav {
  display: flex;
  gap: 24px;
}

.fuss__nav a {
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
}

.fuss__nav a:hover { text-decoration: underline; }

/* ============ Lichtbox ============ */
.lichtbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lichtbox[hidden] { display: none; }

.lichtbox__bild {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lichtbox__zu {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ============ Mobil ============ */
@media (max-width: 900px) {
  .held__bild { height: 640px; }

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

  .galerie { gap: 20px; }
}

@media (max-width: 768px) {
  .kopf__logo img { height: 72px; }

  .kopf__rechts { margin-left: auto; }

  .kopf__burger { display: flex; }

  .kopf__nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--beige);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 8px;
    z-index: 600;
  }

  .kopf { position: relative; }

  .kopf__nav.offen { display: flex; }

  .held__bild { height: 440px; }

  .claim { padding: 60px 0 40px; }

  .ueber { padding: 40px 0 60px; }

  .band { padding: 60px 0; }

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

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

  .abstand { height: 80px; }

  .fuss__innen { justify-content: center; text-align: center; }
}

/* ============ Unterseiten: Hero ============ */
.held--unterseite .held__bild { height: 800px; }

.held__bild--unten img { object-position: 50% 100%; }

.held__bild--kaffeetafel img { object-position: 50% 75%; }

/* ============ Seitenknopf (Speisekarte) ============ */
.seitenknopf {
  background: var(--beige);
  padding: 80px 0 40px;
  text-align: center;
}

/* ============ Speisekarte: Einleitung ============ */
.sk-intro {
  background: var(--beige);
  padding: 40px 0;
  text-align: center;
}

.sk-intro p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: 2px;
}

.sk-intro p + p { margin-top: 24px; }

/* ============ Speisekarte: Foto-Raster ============ */
.sk-raster {
  background: var(--beige);
  padding: 40px 0;
}

.sk-raster__gitter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sk-raster__bild {
  aspect-ratio: 100 / 70;
  overflow: hidden;
}

.sk-raster__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ Speisekarte: Kartenseiten ============ */
.sk-karten {
  background: var(--beige);
  padding: 40px 0 60px;
}

.sk-karten__seite {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

.sk-karten__gitter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.sk-karten__seite img { width: 100%; height: auto; }

/* ============ Kaffeetafel: Info-Grafiken ============ */
.kt-grafik { background: var(--beige); }

.kt-grafik--oben { padding: 120px 0 0; }

.kt-grafik--unten { padding: 0 0 120px; }

.kt-grafik__bild {
  max-width: 550px;
  margin: 0 auto;
}

.kt-grafik__bild img { width: 100%; height: auto; }

/* ============ Unterseiten mobil ============ */
@media (max-width: 900px) {
  .held--unterseite .held__bild { height: 560px; }
}

@media (max-width: 768px) {
  .held--unterseite .held__bild { height: 400px; }

  .seitenknopf { padding: 50px 0 30px; }

  .sk-raster__gitter { grid-template-columns: 1fr 1fr; gap: 20px; }

  .kt-grafik--oben { padding: 70px 0 0; }

  .kt-grafik--unten { padding: 0 0 70px; }
}

/* ============ Events ============ */
.held__bild--events img { object-position: 50% 17%; }

.ev-block {
  background: var(--beige);
  padding: 120px 0 70px;
}

.gross-titel {
  margin-top: 60px;
  text-align: center;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.4;
  letter-spacing: 2px;
}

.ev-text {
  margin-top: 24px;
  text-align: center;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
}

.knopfreihe {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ev-band { background: var(--beige); }

.ev-band__bild { height: 530px; overflow: hidden; }

.ev-band__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

/* ============ Hotel ============ */
.held__bild--hotel img { object-position: 50% 25%; }

.ho-intro {
  background: var(--beige);
  padding: 60px 0;
}

.ho-intro__aktion { text-align: center; }

.ho-intro__text {
  margin-top: 32px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.ho-zimmer {
  background: var(--beige);
  padding: 60px 0 50px;
  text-align: center;
}

.ho-zimmer p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.ho-zimmer p + p { margin-top: 12px; }

.ho-zimmer .ho-zimmer__hinweis { margin-top: 28px; }

.ho-zimmer__aktion { margin-top: 28px; }

.ho-raster {
  background: var(--beige);
  padding: 50px 0 60px;
}

.ho-buchung {
  background: var(--beige);
  padding: 60px 0 120px;
}

/* ============ Mobil (Events/Hotel) ============ */
@media (max-width: 768px) {
  .ev-block { padding: 70px 0 50px; }

  .gross-titel { margin-top: 40px; }

  .ev-band__bild { height: 320px; }

  .ho-buchung { padding: 40px 0 70px; }
}

/* ============ Consent ============ */
.consent {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.consent__box {
  background: var(--beige);
  max-width: 560px;
  width: 100%;
  padding: 28px;
  border-radius: 8px;
}

.consent__box h3 {
  font-weight: 700;
  font-size: 18px;
}

.consent__box p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.consent__option {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}

.consent__option input { margin-top: 3px; }

.consent__knoepfe {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.knopf--klein {
  min-height: 0;
  padding: 10px 22px;
  font-size: 13px;
}

.knopf--hell {
  background: transparent;
  color: var(--gruen);
  border: 1px solid var(--gruen);
}

.knopf--hell:hover {
  background: var(--gruen);
  color: #fff;
}

.consent__rechtliches {
  margin-top: 14px;
  font-size: 12px;
}

.consent__rechtliches a { color: var(--text); }

.consent__zahnrad {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--gruen);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* ============ Platzhalter externe Medien ============ */
.extern-platzhalter {
  background: var(--hell);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
}

.extern-platzhalter p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 20px;
}

/* ============ Kontakt ============ */
.held__bild--kontakt img { object-position: 50% 64%; }

.ko-block {
  background: var(--beige);
  padding: 91px 0 9px;
}

.ko-raster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.ko-info__adresse,
.ko-info__zeiten {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
}

.ko-info a { color: var(--text); text-decoration: none; }

.ko-info a:hover { text-decoration: underline; }

.ko-linie {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .2);
}

.ko-formular { display: block; }

.ko-feld { display: block; }

.ko-feld + .ko-feld { margin-top: 16px; }

.ko-feld__label {
  display: inline-block;
  background: #DCDCCE;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 8px;
  margin-bottom: 6px;
}

.ko-feld input,
.ko-feld textarea {
  display: block;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--gruen);
  border-radius: 4px;
  padding: 12px 14px;
  resize: vertical;
}

.ko-feld input:focus,
.ko-feld textarea:focus {
  outline: 2px solid var(--gruen);
  outline-offset: 1px;
}

.ko-formular .knopf { margin-top: 20px; }

.verborgen {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.ko-danke {
  display: none;
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  color: var(--gruen);
  font-weight: 600;
}

.ko-danke:target { display: block; }

.ko-karte {
  background: var(--beige);
  padding: 10px 0 120px;
}

.ko-karte__rahmen iframe { display: block; border: 0; }

/* ============ Jobs ============ */
.held--jobs .held__bild { height: 850px; }

.held__bild--jobs img { object-position: 50% 82%; }

.jo-block {
  background: var(--beige);
  padding: 100px 0;
  text-align: center;
}

.jo-block p {
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
}

.jo-block p + p { margin-top: 16px; }

.jo-block .jo-block__hinweis { margin-top: 28px; }

.jo-block__aktion { margin-top: 28px; }

.jo-band { background: var(--beige); }

.jo-band__bild { height: 590px; overflow: hidden; }

.jo-band__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

/* ============ Mobil (Kontakt/Jobs) ============ */
@media (max-width: 900px) {
  .held--jobs .held__bild { height: 600px; }

  .ko-raster { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .held--jobs .held__bild { height: 420px; }

  .ko-block { padding: 60px 0 10px; }

  .ko-karte { padding: 10px 0 70px; }

  .jo-block { padding: 60px 0; }

  .jo-band__bild { height: 320px; }
}

/* ============ Rechtsseiten ============ */
.rt-block {
  background: var(--beige);
  padding: 90px 0 120px;
}

.rt-titel {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.4;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.rt-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 10px;
}

.rt-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}

.rt-block p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 900px;
}

.rt-block a { color: var(--gruen); }

.rt-stand {
  margin-top: 40px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .rt-block { padding: 50px 0 70px; }
}

/* ============ OpenTable Tischreservierung ============ */
.reservierung {
  background: var(--beige);
  padding: 20px 0 40px;
}

.reservierung__widget {
  max-width: 640px;
  margin: 0 auto;
}

/* ============ Speisekarten-Raster mobil ============ */
@media (max-width: 900px) {
  .sk-karten__gitter { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .sk-karten__gitter { grid-template-columns: 1fr; }
}
