/* Natürlich Sein — geteiltes Stylesheet für alle Seiten */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --tieferde: #3D1F15;   /* Basis dunkel: Nav, Footer, Headlines */
  --terracotta: #C4734B; /* CTA / Hauptakzent (Biancas Farbe) */
  --waldgruen: #1E3D2A;  /* Naturakzent: Zweitfläche (Section-Wechsel), Icons/Ränder auf hellem Grund (Daniels Farbe) */
  --sand: #E7DAC6;       /* Hintergrund hell: Hero, Flächen */
  --gold: #D4A853;       /* Akzent: Nav-Brand, Hero-H1, Headlines auf Dunkelbraun */

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--tieferde);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.25;
}

h1 { font-size: 2.4rem; color: var(--tieferde); }
h2 { font-size: 1.7rem; color: var(--terracotta); margin-bottom: 20px; }
h3 { font-size: 1.15rem; color: var(--tieferde); margin-bottom: 8px; }

p { margin-bottom: 18px; }
em { color: var(--tieferde); font-style: italic; }
strong { color: var(--tieferde); }

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

ul { list-style: none; padding: 0; margin-bottom: 18px; }
ul li {
  padding: 12px 18px 12px 38px;
  position: relative;
  background: rgba(255,255,255,0.5);
  border-radius: 6px;
  margin-bottom: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}
ul li:hover {
  background: rgba(255,255,255,0.85);
  transform: translateX(4px);
}
.section--dark ul li:hover { background: rgba(255,255,255,0.14); }
ul li::before {
  content: "→";
  position: absolute;
  left: 14px;
  color: var(--waldgruen);
  transition: transform 0.25s ease;
}
ul li:hover::before { transform: translateX(3px); }

/* ── Navigation ── */
nav.main-nav {
  background: var(--tieferde);
  padding: 18px 24px;
}
nav.main-nav .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
nav.main-nav .brand {
  font-family: var(--font-head);
  color: var(--gold);
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
nav.main-nav .links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
nav.main-nav .links a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
nav.main-nav .links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
nav.main-nav .links a:hover { color: var(--gold); }
nav.main-nav .links a:hover::after { width: 100%; }
nav.main-nav .brand {
  transition: opacity 0.25s;
}
nav.main-nav .brand:hover { opacity: 0.8; }

nav.main-nav .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
nav.main-nav .nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.main-nav .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.main-nav .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
nav.main-nav .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  nav.main-nav .container { flex-wrap: nowrap; }
  nav.main-nav .nav-toggle { display: flex; }
  nav.main-nav .links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
  }
  nav.main-nav .links.is-open { display: flex; }
  nav.main-nav .links a {
    padding: 12px 4px;
    border-top: 1px solid rgba(231, 218, 198, 0.15);
  }
}

/* ── Sections ── */
.section { padding: 64px 0; }
.section--alt { background: var(--waldgruen); color: var(--sand); }
.section--alt h2 { color: var(--gold); }
.section--alt p, .section--alt li { color: #e8d5c4; }
.section--alt ul li { background: rgba(255,255,255,0.07); }
.section--alt ul li:hover { background: rgba(255,255,255,0.14); }
.section--alt ul li::before { color: var(--gold); }
.section--alt strong { color: var(--gold); }
.section--alt .card p, .section--alt .card li { color: var(--tieferde); }
.section--alt .card h3 { color: var(--waldgruen); }
.section--alt .card .btn { background: var(--waldgruen); }
.section--alt .card .btn:hover { background: var(--tieferde); }
.section--dark { background: var(--tieferde); color: var(--sand); }
.section--dark h2 { color: var(--gold); }
.section--dark p, .section--dark li { color: #e8d5c4; }
.section--dark ul li { background: rgba(255,255,255,0.07); }
.section--dark ul li::before { color: var(--gold); }
.section--dark strong { color: var(--gold); }

/* ── Section mit dezentem Hintergrundbild (Foto leicht sichtbar unter Farbfläche) ── */
.section--photo-bg { position: relative; overflow: hidden; }
.section--photo-bg .section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}
.section--photo-bg .container { position: relative; z-index: 1; }

/* ── Hero ── */
.hero {
  background: var(--tieferde);
  color: var(--sand);
  padding: 90px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero--compact { padding: 46px 24px 38px; }
.hero--compact .hero-bg { background-position: center 15%; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 4.2vw, 2.4rem);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero h1 { white-space: normal; text-wrap: balance; }
}
.hero p { color: #e8d5c4; font-size: 1.1rem; max-width: 540px; margin: 0 auto 14px; }
.hero p em { color: inherit; }
.hero .btn { margin-top: 24px; }

/* ── Artikel-Hero (Blog): kompakter, gestapelter Hook-Titel statt großer Gold-Headline ── */
.hero--article h1 {
  color: var(--gold);
  font-size: clamp(1.5rem, 4.4vw, 2rem);
  line-height: 1.35;
  white-space: normal;
  max-width: 460px;
  margin: 0 auto;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  background: var(--tieferde);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61,31,21,0.25);
}
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--gold); color: var(--tieferde); }
.btn--gold:hover { background: var(--terracotta); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ── Cards (Angebotsstufen) ── */
.cards {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
.card {
  background: #fff;
  border: 1px solid rgba(61,31,21,0.12);
  border-radius: 10px;
  padding: 28px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(61,31,21,0.14);
  border-color: var(--waldgruen);
}
.card h3 { margin-bottom: 10px; }
.section--dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(212,168,83,0.3);
}
.section--dark .card:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
.section--dark .card h3 { color: var(--gold); }

/* ── Blog-Liste (chronologisch geordnete Artikel-Übersicht) ── */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.blog-list-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(61,31,21,0.14);
}
.blog-list-item:first-child { padding-top: 0; }
.blog-list-item:last-child { border-bottom: none; }
.blog-list-number {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--terracotta);
  flex: 0 0 auto;
  min-width: 48px;
}
.blog-list-item h3 { margin-bottom: 8px; }
.blog-list-item h3 a { color: var(--tieferde); text-decoration: none; }
.blog-list-item h3 a:hover { color: var(--terracotta); }
.blog-list-item--placeholder { opacity: 0.6; }
.blog-list-item--placeholder .blog-list-number { color: var(--waldgruen); }
.blog-list-item--placeholder h3 { color: var(--tieferde); font-style: italic; }
@media (max-width: 600px) {
  .blog-list-item { gap: 14px; }
  .blog-list-number { font-size: 1.5rem; min-width: 34px; }
}

/* ── Karten-Foto (rundes Porträt oben in einer Karte) ── */
.card-photo {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--waldgruen);
}

/* ── Foto-Block (im Fließtext, z. B. "Über Bianca") ── */
.photo-block {
  max-width: 320px;
  margin: 0 auto 28px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}
.photo-block img { display: block; width: 100%; height: auto; }

/* ── Foto im Torbogen-Rahmen ── */
.photo-arch {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.photo-arch img {
  border-radius: 150px 150px 6px 6px;
  border: 2px solid var(--gold);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* ── Bild-Platzhalter (bis Bianca ein Stockfoto ausgewählt hat) ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(45deg, rgba(61,31,21,0.07), rgba(61,31,21,0.07) 12px, rgba(61,31,21,0.02) 12px, rgba(61,31,21,0.02) 24px);
  border: 2px dashed rgba(61,31,21,0.3);
  color: var(--tieferde);
  font-style: italic;
  font-size: 0.9rem;
  padding: 20px;
  box-sizing: border-box;
}
.photo-block .img-placeholder { height: 400px; border-radius: 10px; }
.image-band .img-placeholder { border: none; border-radius: 0; }
.section--dark .img-placeholder,
.section--alt .img-placeholder {
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.07), rgba(255,255,255,0.07) 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px);
  border-color: rgba(212,168,83,0.4);
  color: var(--sand);
}

/* ── Kundenstimmen ── */
@media (min-width: 600px) {
  .testimonials-intro { white-space: nowrap; }
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.testimonial-video {
  text-align: center;
}
.testimonial-video video {
  width: 100%;
  max-width: 240px;
  border-radius: 10px;
  display: block;
  margin: 0 auto 10px;
}
.testimonial-video .testimonial-name {
  font-weight: 600;
  color: var(--terracotta);
}
.testimonial-bar {
  background: #fff;
  border: 2px dashed rgba(61,31,21,0.3);
  border-radius: 10px;
  padding: 28px 32px;
  text-align: left;
}
.testimonial-bar--filled {
  border-style: solid;
  border-color: rgba(212,168,83,0.5);
  box-shadow: 0 10px 26px rgba(61,31,21,0.12);
}
.testimonial-bar .quote-mark {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.testimonial-bar p {
  font-style: italic;
  color: rgba(61,31,21,0.55);
  margin-bottom: 12px;
}
.testimonial-bar--filled p { color: var(--tieferde); }
.testimonial-bar p:last-of-type { margin-bottom: 0; }
.testimonial-bar .testimonial-name {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--terracotta);
}

/* ── Über-mich-Layout (Text links, Hochkant-Foto rechts) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-grid .photo-block {
  max-width: none;
  margin: 0;
}
.about-grid--img-left { grid-template-columns: 1fr 1.3fr; }
.about-grid--stretch { padding-top: 40px; }
.about-grid--stretch .photo-block img { aspect-ratio: 1 / 1; height: auto; object-fit: cover; }
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .photo-block { max-width: 320px; margin: 0 auto 24px; order: -1; }
}

/* ── Bild-Band (ganzseitiges Foto mit poetischer Zeile) ── */
.image-band {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,31,21,0.6), rgba(61,31,21,0.05));
}
.image-band-caption {
  position: absolute;
  left: 0; right: 0; bottom: 32px;
  text-align: center;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--sand);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  padding: 0 24px;
  z-index: 1;
}
/* ── Bild-Banner mit mittig zentrierter Zeile (statt unten), schmaler Balken ── */
.image-band--center {
  height: 170px;
  margin-top: -18px;
}
.image-band--center .image-band-caption {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
}
.image-band--center::after {
  background: rgba(61,31,21,0.42);
}
/* ── Reiner Bild-Banner ohne Farbverlauf/Caption ── */
.image-band--plain::after {
  background: none;
}
@media (max-width: 600px) {
  .image-band { height: 320px; }
  .image-band--center { height: 150px; }
}

/* ── Bild-Banner mit Parallax-Effekt (Bild scrollt langsamer, halbe Höhe) ── */
.image-band--parallax {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.image-band--parallax .image-band-caption {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
}
.image-band--parallax::after {
  background: rgba(61,31,21,0.42);
}
@media (max-width: 600px) {
  .image-band--parallax {
    background-attachment: scroll;
    height: 160px;
  }
}

/* ── Parallax-Banner (Bild scrollt langsamer als der Inhalt) ── */
.parallax-band {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 600px) {
  .parallax-band {
    background-attachment: scroll;
    height: 160px;
  }
}

/* ── Kontaktformular ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 480px;
  margin-top: 28px;
}
.contact-form label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--tieferde);
  margin-top: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid rgba(61,31,21,0.25);
  border-radius: 6px;
  background: #fff;
  color: var(--tieferde);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: 22px; align-self: flex-start; }

/* ── Session-Boxen (z. B. 1./2. Session nebeneinander) ── */
.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}
.session-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 8px;
  padding: 16px 18px;
}
.session-box h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.session-box p { margin: 0; }
.session-box--extras { margin-top: 14px; }
@media (max-width: 600px) {
  .session-grid { grid-template-columns: 1fr; }
}

/* ── Preis ── */
.price-box { text-align: center; padding: 20px 0; }
.price { font-size: 2.6rem; font-family: var(--font-head); color: var(--terracotta); }
.price-note { color: var(--tieferde); margin-bottom: 24px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(30,61,42,0.25); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  font-family: var(--font-head);
  font-size: 1.02rem;
  padding: 18px 30px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--terracotta); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  color: var(--waldgruen);
  transition: transform 0.25s ease;
  display: inline-block;
}
.faq-item[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq-item p { padding-right: 30px; }

/* ── Footer ── */
footer {
  background: #1e0e0a;
  color: rgba(231,218,198,0.55);
  text-align: center;
  padding: 26px 24px;
  font-size: 0.82rem;
}
footer a { color: rgba(231,218,198,0.55); margin: 0 8px; }
footer a:hover { color: var(--gold); }

/* ── Scroll-Einblendung ── */
.fade-in {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; translate: none; transition: none; }
}

/* ── Zurück-nach-oben-Button ── */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tieferde);
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 8px 20px rgba(61,31,21,0.3);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--terracotta); }
.back-to-top svg { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}
@media (max-width: 600px) {
  .back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

/* ── Platzhalter (Blank Page) ── */
.placeholder {
  text-align: center;
  padding: 100px 24px;
}
.placeholder p { color: var(--tieferde); font-style: italic; }

/* ── Responsive ── */
@media (max-width: 600px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  .price { font-size: 2rem; }
  .section { padding: 48px 0; }
}
