/* ============================================================
   Ferienhaus Lore – Schönwalde am Bungsberg
   Farbwelt nach dem Ölpastell-Hundebild:
   Salbeigrün, Rosa, Orange, Gelb, Creme, warmes Braun
   ============================================================ */

:root {
  --gruen: #9dbe8d;
  --gruen-hell: #b3cda4;
  --gruen-dunkel: #7da36c;
  --rosa: #f27ba9;
  --rosa-kraeftig: #e85d97;
  --rosa-hell: #f8aecb;
  --orange: #f5a733;
  --orange-hell: #fbc36b;
  --gelb: #f2d14e;
  --gelb-hell: #f7e28e;
  --creme: #fbf7ee;
  --creme-dunkler: #f4ecdc;
  --braun: #4a3728;
  --braun-weich: #6b5442;

  --schrift: "Nunito", "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --schrift-display: "Fredoka", "Nunito", "Avenir Next", sans-serif;

  --radius-gross: 32px;
  --radius: 20px;
  --schatten: 0 10px 30px rgba(74, 55, 40, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--schrift);
  color: var(--braun);
  background: var(--gruen);
  line-height: 1.65;
  font-size: 1.06rem;
}

h1, h2, h3 {
  font-family: var(--schrift-display);
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--rosa-kraeftig); }

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

.inhalt {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Kopfzeile ---------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(157, 190, 141, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid rgba(74, 55, 40, 0.08);
}

.kopf-innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--braun);
  font-family: var(--schrift-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.logo svg { width: 40px; height: 40px; }

.kopf nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kopf nav a {
  text-decoration: none;
  color: var(--braun);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s;
}

.kopf nav a:hover { background: var(--gelb-hell); }

.kopf nav a.tel {
  background: var(--rosa);
  color: #fff;
}

.kopf nav a.tel:hover { background: var(--rosa-kraeftig); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}

.hero-innen {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--creme);
  text-shadow: 0 2px 0 rgba(74, 55, 40, 0.15);
  margin-bottom: 12px;
}

.hero-text h1 .rosa { color: var(--rosa-hell); }

.hero-text .untertitel {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--braun);
  margin-bottom: 20px;
}

.hero-text p { margin-bottom: 24px; max-width: 46ch; }

.badge {
  display: inline-block;
  background: var(--gelb);
  color: var(--braun);
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  transform: rotate(-2deg);
  margin-bottom: 20px;
  box-shadow: var(--schatten);
}

.knopf {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-family: var(--schrift-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: var(--schatten);
  transition: transform 0.15s, background 0.2s;
}

.knopf:hover { background: var(--rosa-kraeftig); transform: translateY(-2px) rotate(-1deg); }

.knopf.zweit {
  background: var(--creme);
  color: var(--braun);
  margin-left: 10px;
}

.knopf.zweit:hover { background: var(--gelb-hell); }

.hero-bild svg { width: 100%; height: auto; }

/* Wellen-Trenner */
.welle { display: block; width: 100%; height: auto; margin-bottom: -1px; }

/* ---------- Abschnitte ---------- */

section { padding: 72px 0; }

.abschnitt-creme { background: var(--creme); }
.abschnitt-rosa { background: var(--rosa-hell); }
.abschnitt-gruen { background: var(--gruen); }
.abschnitt-gelb { background: var(--gelb-hell); }

.abschnitt-titel {
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.abschnitt-einleitung {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 48px;
  font-size: 1.12rem;
}

/* ---------- Geschichte ---------- */

.geschichte {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.geschichte-text p { margin-bottom: 18px; }

.geschichte-text .handschrift {
  font-family: var(--schrift-display);
  font-size: 1.35rem;
  color: var(--rosa-kraeftig);
  transform: rotate(-1deg);
  display: inline-block;
}

.geschichte-seite {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.polaroid {
  background: #fff;
  padding: 14px 14px 10px;
  border-radius: 6px;
  box-shadow: var(--schatten);
  transform: rotate(1.5deg);
  max-width: 460px;
  margin: 0 auto;
}

.polaroid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.polaroid figcaption {
  font-family: var(--schrift-display);
  text-align: center;
  padding: 10px 4px 6px;
  color: var(--braun-weich);
  font-size: 1.05rem;
}

.familien-karte {
  background: var(--gruen-hell);
  border-radius: var(--radius-gross);
  padding: 36px;
  box-shadow: var(--schatten);
  text-align: center;
}

.familien-karte h3 { margin-bottom: 20px; font-size: 1.4rem; }

.familie {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.person { width: 96px; }

.person .kreis {
  width: 84px;
  height: 84px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: inset 0 -6px 0 rgba(74, 55, 40, 0.12);
}

.person:nth-child(1) .kreis { background: var(--orange-hell); }
.person:nth-child(2) .kreis { background: var(--rosa-hell); }
.person:nth-child(3) .kreis { background: var(--gelb-hell); }
.person:nth-child(4) .kreis { background: var(--creme); }
.person:nth-child(5) .kreis { background: var(--gruen); }

.person strong { display: block; font-size: 1.02rem; }
.person span { font-size: 0.85rem; color: var(--braun-weich); }

/* ---------- Baustellen-Tagebuch ---------- */

.meilensteine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.meilenstein {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--schatten);
  border-top: 6px solid var(--orange);
}

.meilenstein:nth-child(2) { border-top-color: var(--rosa); }
.meilenstein:nth-child(3) { border-top-color: var(--gelb); }

.meilenstein .emoji { font-size: 2rem; margin-bottom: 10px; }
.meilenstein h3 { margin-bottom: 8px; font-size: 1.2rem; }
.meilenstein p { font-size: 0.98rem; }

/* ---------- Haus-Merkmale ---------- */

.merkmale {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.merkmal {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--schatten);
}

.merkmal .emoji { font-size: 2.2rem; margin-bottom: 8px; }
.merkmal h3 { font-size: 1.1rem; margin-bottom: 6px; }
.merkmal p { font-size: 0.94rem; color: var(--braun-weich); }

/* ---------- Galerie ---------- */

.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.galerie figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  background: var(--creme-dunkler);
}

.galerie img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s;
}

.galerie figure:hover img { transform: scale(1.04); }

.galerie figcaption {
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--creme);
}

/* ---------- Ausflugs-Karten ---------- */

.ausfluege {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.ausflug {
  background: var(--creme);
  border-radius: var(--radius-gross);
  padding: 30px 28px;
  box-shadow: var(--schatten);
  position: relative;
  transition: transform 0.2s;
}

.ausflug:hover { transform: translateY(-4px) rotate(-0.5deg); }

.ausflug .emoji { font-size: 2.4rem; margin-bottom: 12px; }

.ausflug h3 { font-size: 1.3rem; margin-bottom: 10px; }

.ausflug p { font-size: 0.98rem; margin-bottom: 12px; }

.entfernung {
  display: inline-block;
  background: var(--gelb);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 999px;
}

.ausflug.highlight { background: var(--rosa-hell); }
.ausflug.highlight .entfernung { background: var(--creme); }

/* ---------- Kontakt ---------- */

.kontakt-karte {
  background: var(--creme);
  border-radius: var(--radius-gross);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--schatten);
  max-width: 640px;
  margin: 0 auto;
}

.kontakt-karte h2 { font-size: 2rem; margin-bottom: 12px; }
.kontakt-karte p { margin-bottom: 24px; max-width: 44ch; margin-left: auto; margin-right: auto; }

.telefon-gross {
  display: inline-block;
  font-family: var(--schrift-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  background: var(--rosa);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow: var(--schatten);
  transition: transform 0.15s, background 0.2s;
}

.telefon-gross:hover { background: var(--rosa-kraeftig); transform: translateY(-2px); }

.kontakt-hinweis { margin-top: 18px; font-size: 0.95rem; color: var(--braun-weich); }

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

.fuss {
  background: var(--braun);
  color: var(--creme);
  padding: 40px 0;
  text-align: center;
  font-size: 0.95rem;
}

.fuss a { color: var(--gelb-hell); text-decoration: none; font-weight: 700; }
.fuss a:hover { text-decoration: underline; }
.fuss .fuss-links { margin-bottom: 12px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.fuss .herz { color: var(--rosa-hell); }

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */

.unterseite {
  background: var(--creme);
  min-height: 60vh;
  padding: 64px 0;
}

.unterseite h1 { margin-bottom: 24px; }
.unterseite h2 { margin: 28px 0 10px; font-size: 1.3rem; }
.unterseite p { margin-bottom: 14px; max-width: 70ch; }

/* ---------- Responsiv ---------- */

@media (max-width: 820px) {
  .hero-innen { grid-template-columns: 1fr; padding-bottom: 48px; }
  .hero-bild { max-width: 420px; margin: 0 auto; }
  .geschichte { grid-template-columns: 1fr; }
  .meilensteine { grid-template-columns: 1fr; }
  .kopf nav a:not(.tel) { display: none; }
  section { padding: 56px 0; }
}
