/* ============================================================
   VIRIDITAS HILDEGARD — Stylesheet
   Justyna Szymbor · Seligenstadt
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  --pergament:   #EDE4CE;
  --creme:       #FAF6ED;
  --creme-dunkel:#F0E8D5;
  --waldgruen:   #1E3A1E;
  --salbei:      #5C7A52;
  --salbei-hell: #A8C09E;
  --bernstein:   #B8791A;
  --gold:        #C9A84C;
  --gold-hell:   #E8D49A;
  --schiefer:    #3D4F5A;
  --text:        #2A2018;
  --text-leicht: #5A4E3A;

  --font-marke:  'Cinzel', serif;
  --font-head:   'Cormorant Garamond', serif;
  --font-body:   'Crimson Pro', serif;

  --radius:      4px;
  --max-w:       1100px;
  --section-pad: 80px 20px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background-color: var(--pergament);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Signatur-Element: goldener Heiligenschein-Kreis */
.halo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(220, 210, 235, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(180, 160, 210, 0.3);
  padding: 0 24px;
  height: 64px;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: var(--font-marke);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--waldgruen);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  justify-content: center;
}

.nav__logo span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--bernstein);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  align-items: center;
  height: 100%;
}

.nav__links a {
  color: var(--text);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--bernstein); }

.nav__cta {
  background: var(--waldgruen);
  color: var(--creme) !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}

.nav__cta:hover { background: var(--bernstein) !important; color: white !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: var(--pergament);
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero__text {
  padding: 60px 60px 60px 80px;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bernstein);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--bernstein);
}

.hero__title {
  font-family: var(--font-marke);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--waldgruen);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.hero__subtitle { display: none; }

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-leicht);
  max-width: 440px;
  margin-bottom: 36px;
  font-style: italic;
  line-height: 1.8;
}

.hero__desc strong {
  font-style: normal;
  color: var(--waldgruen);
}

.btn-primary {
  display: inline-block;
  background: var(--waldgruen);
  color: var(--creme);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--bernstein);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  color: var(--waldgruen);
  border: 1px solid var(--salbei);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--bernstein);
  color: var(--bernstein);
}

.hero__image {
  height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
}

/* Übergang zur Mitte – rechts das Foto, links läuft creme rein */
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, var(--pergament) 0%, rgba(237,228,206,0.5) 35%, transparent 55%),
    linear-gradient(to top, var(--pergament) 0%, transparent 18%);
  pointer-events: none;
  z-index: 1;
}

.hero__image::before { display: none; }

.hero__image img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 95%;
  max-width: 680px;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: 0;
  margin-right: -20%;
  align-self: flex-end;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.2));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 22%);
  mask-image: linear-gradient(to top, transparent 0%, black 22%);
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bernstein);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--waldgruen);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1rem;
  color: var(--text-leicht);
  max-width: 580px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================================
   PHILOSOPHIE — 4 Säulen
   ============================================================ */
.philosophie {
  padding: var(--section-pad);
  background: var(--creme-dunkel);
  background-image: url('images/philosophie-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.philosophie::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240, 232, 213, 0.88);
  pointer-events: none;
}

.philosophie .container,
.leistungen .container,
.ablauf .container,
.kontakt .container { position: relative; z-index: 1; }

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

.saeule {
  text-align: center;
  padding: 32px 20px;
  background: var(--creme);
  border-top: 2px solid var(--gold);
  transition: transform 0.2s;
}

.saeule:hover { transform: translateY(-4px); }

.saeule__nr {
  font-family: var(--font-marke);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--schiefer);
  margin-bottom: 16px;
  display: block;
}

.saeule__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saeule__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--waldgruen);
  margin-bottom: 10px;
  font-style: italic;
}

.saeule__text {
  font-size: 0.88rem;
  color: var(--text-leicht);
  line-height: 1.65;
}

/* ============================================================
   LEISTUNGEN — 3 Module
   ============================================================ */
.leistungen {
  padding: var(--section-pad);
  background: var(--pergament);
  background-image: url('images/leistungen-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.leistungen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237, 228, 206, 0.85);
  pointer-events: none;
}

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

.modul {
  background: var(--creme);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30,58,30,0.06);
  transition: box-shadow 0.25s, transform 0.2s;
}

.modul:hover {
  box-shadow: 0 6px 24px rgba(30,58,30,0.1);
  transform: translateY(-3px);
}

.modul__header {
  background: var(--waldgruen);
  padding: 28px 28px 20px;
  position: relative;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.modul__header--hell {
  background: var(--salbei);
}

.modul__header--bernstein {
  background: #7B6BA8;
}

.modul__buchstabe {
  font-family: var(--font-marke);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.modul__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  display: block;
}

.modul__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  font-style: italic;
}

.modul__body {
  padding: 28px;
}

.modul__angebote {
  list-style: none;
  margin-bottom: 20px;
}

.modul__angebote li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--creme-dunkel);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modul__angebote li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.modul__desc {
  font-size: 0.88rem;
  color: var(--text-leicht);
  font-style: italic;
  line-height: 1.65;
}

/* ============================================================
   ABLAUF — 3 Schritte
   ============================================================ */
.ablauf {
  padding: var(--section-pad);
  background: var(--waldgruen);
  background-image: url('images/ablauf-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

.ablauf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 30, 0.76);
  pointer-events: none;
}

.ablauf .section-title { color: var(--pergament); }
.ablauf .section-eyebrow { color: var(--gold); }
.ablauf .section-eyebrow::before,
.ablauf .section-eyebrow::after { background: var(--gold); }
.ablauf .section-intro { color: var(--salbei-hell); }

.schritte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.schritte::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: rgba(201,168,76,0.3);
}

.schritt {
  text-align: center;
}

.schritt__nr {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-marke);
  font-size: 1.4rem;
  color: var(--gold);
  background: rgba(0,0,0,0.2);
}

.schritt__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pergament);
  margin-bottom: 12px;
  font-style: italic;
}

.schritt__dauer {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.schritt__text {
  font-size: 0.9rem;
  color: var(--salbei-hell);
  line-height: 1.7;
}

/* ============================================================
   KINDER-ANGEBOTE
   ============================================================ */
.kinder {
  padding: var(--section-pad);
  background: var(--creme);
  background-image: url('images/lavendel-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

.kinder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(210, 195, 230, 0.82);
  pointer-events: none;
}

.kinder .container { position: relative; z-index: 1; }

.kinder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.kinder-paket {
  border: 1px solid var(--gold-hell);
  padding: 36px 32px;
  background: var(--creme-dunkel);
  position: relative;
}

.kinder-paket__badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--salbei);
  color: white;
  font-family: var(--font-marke);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 14px;
}

.kinder-paket__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.kinder-paket__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--waldgruen);
  margin-bottom: 8px;
  font-style: italic;
}

.kinder-paket__sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bernstein);
  margin-bottom: 16px;
  display: block;
}

.kinder-paket__text {
  font-size: 0.9rem;
  color: var(--text-leicht);
  line-height: 1.7;
}

.kinder__hinweis {
  text-align: center;
  margin-top: 40px;
  padding: 24px 32px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-hell);
  max-width: 820px;
  margin: 40px auto 0;
  font-size: 0.88rem;
  color: var(--text-leicht);
  font-style: italic;
}

/* ============================================================
   PREISE
   ============================================================ */
.preise {
  padding: var(--section-pad);
  background: var(--creme-dunkel);
}

.preise-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-collapse: collapse;
}

.preise-table th {
  font-family: var(--font-marke);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--waldgruen);
  border-bottom: 2px solid var(--gold);
  padding: 12px 20px;
  text-align: left;
}

.preise-table th:last-child { text-align: right; }

.preise-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gold-hell);
  font-size: 0.95rem;
  color: var(--text);
  vertical-align: top;
}

.preise-table td:last-child {
  text-align: right;
  font-family: var(--font-marke);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bernstein);
  white-space: nowrap;
}

.preise-table tr:last-child td { border-bottom: none; }

.preise-table td strong {
  display: block;
  font-weight: 600;
  color: var(--waldgruen);
  margin-bottom: 2px;
}

.preise-table td em {
  font-size: 0.83rem;
  color: var(--text-leicht);
}

.preise__hinweis {
  text-align: center;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-leicht);
  font-style: italic;
  max-width: 820px;
  margin: 28px auto 0;
}

/* ============================================================
   ÜBER MICH
   ============================================================ */
.ueber {
  padding: var(--section-pad);
  background: #EDE8F5;
}

.ueber__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.ueber__bild-wrap {
  position: relative;
  background: #C8B8E8;
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.ueber__bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(80,60,120,0.15));
}

/* Kein Rahmen */
.ueber__bild-wrap::after { display: none; }

.ueber__text { }

.ueber__name {
  font-family: var(--font-marke);
  font-size: 1.5rem;
  color: var(--waldgruen);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.ueber__titel {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bernstein);
  margin-bottom: 28px;
  display: block;
}

.ueber__zitat {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--waldgruen);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.ueber__bio {
  font-size: 0.95rem;
  color: var(--text-leicht);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt {
  padding: var(--section-pad);
  background: linear-gradient(170deg, #2d5a3a 0%, #152b1c 50%, #060f08 100%);
  position: relative;
}

.kontakt::before { display: none; }

.kontakt .section-title { color: var(--pergament); }
.kontakt .section-eyebrow { color: var(--gold); }
.kontakt .section-eyebrow::before,
.kontakt .section-eyebrow::after { background: var(--gold); }

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.kontakt__block h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--pergament);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.kontakt__zeile {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--salbei-hell);
  align-items: flex-start;
}

.kontakt__zeile strong {
  color: var(--gold);
  min-width: 70px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.kontakt__oeffnung {
  list-style: none;
}

.kontakt__oeffnung li {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--salbei-hell);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.kontakt__oeffnung li span:first-child {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kontakt__btn {
  display: inline-block;
  margin-top: 24px;
  background: var(--gold);
  color: var(--waldgruen);
  padding: 12px 28px;
  font-family: var(--font-marke);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.kontakt__btn:hover { background: var(--pergament); }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--creme-dunkel);
  padding: 32px 24px;
  border-top: 1px solid var(--gold-hell);
}

.disclaimer p {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--text-leicht);
  line-height: 1.8;
  text-align: center;
}

.disclaimer a {
  color: var(--bernstein);
  text-decoration: none;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  padding: 24px;
  text-align: center;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image { height: 50vw; }
  .hero__text { padding: 48px 24px; }
  .saulen-grid { grid-template-columns: 1fr 1fr; }
  .module-grid { grid-template-columns: 1fr; }
  .schritte { grid-template-columns: 1fr; }
  .schritte::before { display: none; }
  .kinder-grid { grid-template-columns: 1fr; }
  .ueber__inner { grid-template-columns: 1fr; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 14px; }
  .nav__links { display: none; }
}

@media (max-width: 600px) {
  .saulen-grid { grid-template-columns: 1fr; }
  .hero__text { padding: 36px 20px; }
  .btn-secondary { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
