/* ============================================================
   eigenraum — Nicole Santer
   Gemeinsames Stylesheet für alle Seiten
   Farben & Schriften aus dem Canva Markenkit
   ============================================================ */

:root {
  --altrosa:       #C4968A;
  --altrosa-hell:  #D9B5AD;
  --cremeweiss:    #FAF6EF;
  --sand:          #CFC0B0;
  --walnuss:       #3D2B20;

  --text:          #3D2B20;
  --text-leise:    #6b574a;

  /* Zarter Rosé-Hauch für weiche Flächen (zwischen Cremeweiß und Altrosa hell) */
  --rosa-hauch:    #F2E5DF;

  --max-breite:    1080px;
  --radius:        24px;

  /* Warmer, weicher, diffuser Schatten für Geborgenheit */
  --schatten-weich: 0 22px 50px -28px rgba(110, 78, 66, 0.45);
  --schatten-zart:  0 14px 34px -22px rgba(110, 78, 66, 0.38);

  /* Einheitlicher, weicher, warm-entsättigter Foto-Stil, damit alle Bilder
     (kühles Studio wie warmes Porträt) wie eine Bildfamilie wirken */
  --foto-licht: brightness(1.04) contrast(0.98) saturate(0.9) sepia(0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cremeweiss);
  color: var(--text);
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  letter-spacing: 0.005em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Überschriften ---------- */

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--walnuss);
  margin: 0 0 0.5em;
}

.kursiv,
h1.kursiv,
h2.kursiv {
  font-style: italic;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; }

a { color: var(--walnuss); }

.leise {
  color: var(--text-leise);
}

.klein-ueber {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--altrosa);
  font-weight: 600;
  margin-bottom: 0.6em;
}

/* ---------- Layout ---------- */

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

section {
  padding: 104px 0;
}

.schmal {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.schmal p { font-size: 1.12rem; }

/* Blume des Lebens als feiner Trenner */
.blume-divider {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 40px;
  opacity: 0.5;
}

.blume-divider.unten { margin: 44px auto 0; }

/* ---------- Navigation ---------- */

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 150, 138, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-breite);
  margin: 0 auto;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--walnuss);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--walnuss);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--altrosa); }

/* Mobiles Menü über Checkbox-Trick (kein JavaScript nötig) */
.nav-toggle, .nav-burger { display: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--altrosa);
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 30px -14px rgba(196, 150, 138, 0.9);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--walnuss);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px rgba(61, 43, 32, 0.5);
}

.btn-leer {
  background: transparent;
  color: var(--walnuss);
  border: 1.5px solid var(--altrosa);
}

.btn-leer:hover { background: var(--altrosa); color: #fff; }

.btn-klein {
  padding: 11px 24px;
  font-size: 0.9rem;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--altrosa-hell) 0%, var(--rosa-hauch) 48%, var(--cremeweiss) 100%);
  text-align: center;
  padding: 112px 0 96px;
}

.hero .wrap { position: relative; z-index: 1; }

/* Feines Blume-des-Lebens-Wasserzeichen */
.hero-blume {
  position: absolute;
  width: 560px;
  height: 560px;
  top: -150px;
  right: -150px;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.hero .hero-name {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-leise);
  margin-bottom: 14px;
}

.hero .wordmark-gross {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--altrosa);
  display: block;
  margin-bottom: 22px;
}

.hero h1 { margin-bottom: 0.3em; }

.hero .unterzeile {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 38px;
  color: var(--text-leise);
}

/* ---------- Foto-Platzhalter ---------- */

.foto-platzhalter {
  background: var(--sand);
  border: 2px dashed var(--altrosa);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--walnuss);
  font-size: 0.95rem;
  font-style: italic;
  padding: 40px 24px;
  min-height: 280px;
}

.foto-platzhalter.gross { min-height: 420px; }

/* Echte Fotos */
.hero-foto {
  display: block;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 52px auto 0;
  box-shadow: var(--schatten-weich);
  filter: var(--foto-licht);
}

.foto-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--schatten-weich);
  filter: var(--foto-licht);
}

.inhalt .foto-img {
  aspect-ratio: 3 / 4;
  margin-bottom: 40px;
}

/* Für ein einzelnes, sehr helles Foto: etwas ruhiger und wärmer,
   damit es sich an die anderen anpasst und nicht heraussticht */
.foto-img.foto-sanft {
  filter: brightness(0.95) contrast(0.98) saturate(0.88) sepia(0.17);
}

/* ---------- Weiche Farbflächen ---------- */

.sektion-sand { background: var(--rosa-hauch); }
.sektion-rosa { background: var(--altrosa-hell); }

/* ---------- Methoden-Kacheln ---------- */

.kacheln {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.kachel {
  background: var(--cremeweiss);
  border-radius: var(--radius);
  padding: 46px 36px;
  box-shadow: var(--schatten-zart);
}

.kachel h3 { color: var(--altrosa); margin-bottom: 0.7em; }

/* ---------- Zwei-Spalten (Text + Bild) ---------- */

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

/* ---------- Testimonials ---------- */

.stimmen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.stimme {
  background: var(--cremeweiss);
  border-radius: var(--radius);
  padding: 42px 36px;
  position: relative;
  box-shadow: var(--schatten-zart);
}

.stimme p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--walnuss);
  line-height: 1.65;
}

.stimmen-mehr {
  text-align: center;
  margin: 48px 0 0;
}

.stimmen-mehr a {
  color: var(--altrosa);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--altrosa);
  padding-bottom: 2px;
}

.stimmen-mehr a:hover { color: var(--walnuss); border-color: var(--walnuss); }

.stimme .name {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--altrosa);
  font-weight: 600;
  margin: 0;
}

/* ---------- CTA-Abschnitt ---------- */

.cta-block {
  background: var(--altrosa-hell);
  text-align: center;
}

/* ---------- Footer ---------- */

footer {
  background: var(--walnuss);
  color: var(--cremeweiss);
  padding: 56px 0 40px;
  text-align: center;
}

footer .wordmark { color: var(--cremeweiss); font-size: 1.9rem; display: inline-block; margin-bottom: 4px; }

footer .footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--altrosa-hell);
  margin: 0 0 18px;
}

footer p { color: var(--altrosa-hell); margin-bottom: 18px; }

footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--cremeweiss);
  text-decoration: none;
  font-size: 0.92rem;
}

footer .footer-links a:hover { color: var(--altrosa-hell); }

/* ---------- Inhaltsseiten (Über mich, Angebot, etc.) ---------- */

.seiten-kopf {
  background: linear-gradient(180deg, var(--altrosa-hell) 0%, var(--rosa-hauch) 70%, var(--cremeweiss) 100%);
  text-align: center;
  padding: 84px 0 68px;
}

.inhalt {
  max-width: 720px;
  margin: 0 auto;
}

.inhalt h2 { margin-top: 1.6em; }

.inhalt .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--walnuss);
  margin-bottom: 1.4em;
}

.hintergrund-liste {
  list-style: none;
  padding: 0;
  margin: 0.4em 0 1.2em;
}

.hintergrund-liste li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.hintergrund-liste li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--altrosa);
}

.angebot-block {
  background: var(--cremeweiss);
  border-radius: var(--radius);
  padding: 40px 38px;
  margin-bottom: 28px;
  box-shadow: var(--schatten-zart);
}

.angebot-block h3 { color: var(--altrosa); margin-top: 0; }

.preis {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--walnuss);
  margin: 6px 0 14px;
}

.hinweis {
  background: var(--altrosa-hell);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--walnuss);
}

.rechtlicher-hinweis p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-leise);
}

/* ---------- Responsive (Handy) ---------- */

@media (max-width: 820px) {
  section { padding: 60px 0; }

  .kacheln,
  .stimmen { grid-template-columns: 1fr; }

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

  /* Auf dem Handy immer zuerst der Text, dann das Bild,
     damit nie zwei Bilder direkt aufeinander folgen */
  .zweispalt > div { order: 1; }
  .zweispalt > img { order: 2; }

  /* Mobiles Klapp-Menü */
  .nav-burger {
    display: block;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--walnuss);
    background: none;
    border: none;
    user-select: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cremeweiss);
    border-bottom: 1px solid var(--sand);
    padding: 8px 0;
  }

  .nav-links a {
    padding: 14px 24px;
    width: 100%;
  }

  .nav-toggle:checked ~ .nav-links { display: flex; }
}
