/* =========================================================
   VANESSA BELLEZA — Braut-Make-up & Brautfrisuren
   Farbkonzept: Creme · Rosé · elegantes Magenta/Pink
   Fonts: Cormorant Garamond (Serife) + Jost (Sans)
   ========================================================= */

:root {
  /* --- Farbpalette --- */
  --creme:        #FBF6F1;  /* Haupt-Hintergrund, warm & weich */
  --creme-2:      #F5EAE2;  /* zweiter Cremeton für Abschnitte */
  --rose-soft:    #F3D9DD;  /* zartes Rosé */
  --rose:         #E7B7C1;  /* Rosé Akzent */
  --blush:        #D98A9E;  /* kräftigeres Blush */
  --magenta:      #B84A73;  /* elegantes Magenta (nicht knallig) */
  --magenta-deep: #8E3357;  /* tiefes Beeren-Magenta für Hover */
  --plum:         #3E2733;  /* fast-schwarzer Pflaumenton für Text */
  --plum-soft:    #6A4F5A;  /* gedämpfter Text */
  --gold:         #C9A66B;  /* dezenter Champagner-Akzent */
  --white:        #FFFFFF;

  --shadow-soft: 0 18px 50px -22px rgba(142, 51, 87, 0.28);
  --shadow-card: 0 12px 40px -20px rgba(62, 39, 51, 0.30);
  --radius: 18px;
  --radius-lg: 28px;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", -apple-system, "Segoe UI", sans-serif;

  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--plum);
  background: var(--creme);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* --- Typo-Grundlagen --- */
.h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  color: var(--plum);
  letter-spacing: 0.2px;
}
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.74rem;
  color: var(--magenta);
  margin-bottom: 0.9rem;
  font-weight: 400;
}
em { font-style: italic; color: var(--magenta); }
strong { font-weight: 500; color: var(--plum); }

/* --- Layout-Helfer --- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) 1.5rem;
}
.section__head { text-align: center; max-width: 620px; margin: 0 auto 3.2rem; }
.section__lead { color: var(--plum-soft); font-size: 1.08rem; margin-top: 1rem; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.6px;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  font-size: 0.95rem;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blush), var(--magenta));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { transform: translateY(-2px); background: linear-gradient(135deg, var(--magenta), var(--magenta-deep)); }
.btn--ghost { border-color: var(--rose); color: var(--magenta-deep); background: transparent; }
.btn--ghost:hover { background: var(--rose-soft); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2.6rem; font-size: 1.02rem; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 0.5rem 0;
}
.nav--scrolled {
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -18px rgba(62, 39, 51, 0.5);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1.5rem;
}
.brand { display: flex; flex-direction: column; line-height: 0.95; }
.brand__name { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--plum); }
.brand__sub {
  font-family: var(--font-sans); text-transform: uppercase;
  letter-spacing: 5px; font-size: 0.62rem; color: var(--magenta); padding-left: 2px;
}
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { font-size: 0.92rem; color: var(--plum); position: relative; transition: color 0.2s; }
.nav__links a:not(.nav__cta):hover { color: var(--magenta); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: var(--magenta); transition: width 0.25s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--plum); color: var(--white) !important;
  padding: 0.55rem 1.3rem; border-radius: 999px; transition: background 0.25s;
}
.nav__cta:hover { background: var(--magenta); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--plum); border-radius: 2px; transition: 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.76rem;
  color: var(--magenta); margin-bottom: 1.3rem; font-weight: 400;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  color: var(--plum);
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; }
.hero__text {
  font-size: 1.14rem; color: var(--plum-soft); max-width: 30rem; margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__image {
  position: relative;
  height: 74vh;
  min-height: 440px;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  background:
    radial-gradient(120% 90% at 30% 15%, var(--rose-soft), transparent 60%),
    linear-gradient(160deg, var(--rose) 0%, var(--blush) 55%, var(--magenta) 120%);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}

/* schwebende Blüten-Deko */
.hero__petals { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hero__petals::before,
.hero__petals::after {
  content: "✿"; position: absolute; color: var(--rose); opacity: 0.5;
  font-size: 2.4rem; animation: float 9s ease-in-out infinite;
}
.hero__petals::before { top: 18%; left: 46%; }
.hero__petals::after { bottom: 20%; left: 8%; font-size: 1.7rem; color: var(--blush); animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(12deg); }
}

/* =========================================================
   FOTO-PLATZHALTER (allgemein)
   ========================================================= */
.photo-placeholder {
  width: 100%; border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.15) 0 14px, transparent 14px 28px),
    linear-gradient(155deg, var(--rose) 0%, var(--blush) 60%, var(--magenta) 130%);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-serif); font-style: italic; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.photo-placeholder--portrait { aspect-ratio: 3 / 4; }

/* Über-mich-Foto */
.ueber__photo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 25%;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}

/* =========================================================
   GALERIE
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1.1rem;
}
.gallery__item {
  margin: 0; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-card); position: relative;
}
.gallery__item--tall { grid-row: span 2; }
/* Hochformat-Fotos: Ausschnitt aufs Motiv legen, statt cover mittig schneiden zu lassen */
.gallery__item--fokus-oben img { object-position: 50% 18%; }
.gallery__item--fokus-twist img { object-position: 50% 28%; }
.gallery__item--fokus-flakons img { object-position: 50% 42%; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; display: block;
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(142,51,87,0.14));
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* =========================================================
   ÜBER MICH
   ========================================================= */
.ueber { background: transparent; }
.ueber__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.ueber__text p { color: var(--plum-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }
.ueber__facts { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.ueber__facts li { display: flex; align-items: center; gap: 0.7rem; font-size: 1rem; color: var(--plum); }
.ueber__facts span { color: var(--magenta); }

/* =========================================================
   LEISTUNGEN — Karten
   ========================================================= */
.leistungen { position: relative; }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(231, 183, 193, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--magenta));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 55px -24px rgba(142,51,87,0.4); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--rose-soft); color: var(--magenta-deep);
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.6rem; }
.card p { color: var(--plum-soft); font-size: 0.98rem; }
.card--soon { background: linear-gradient(160deg, var(--creme-2), var(--rose-soft)); }
.badge {
  font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 1.5px;
  text-transform: uppercase; background: var(--magenta); color: var(--white);
  padding: 0.2rem 0.55rem; border-radius: 999px; vertical-align: middle; margin-left: 0.4rem;
}
.leistungen__note {
  text-align: center; max-width: 640px; margin: 2.8rem auto 0;
  color: var(--plum-soft); font-size: 1.05rem;
}

/* =========================================================
   WARUM ICH
   ========================================================= */
.warum { background: linear-gradient(180deg, transparent, var(--creme-2) 30%, var(--creme-2) 70%, transparent); }
.warum__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem;
}
.warum__item {
  background: rgba(255,255,255,0.6);
  border-left: 3px solid var(--rose);
  padding: 1.6rem 1.8rem; border-radius: 0 var(--radius) var(--radius) 0;
  transition: border-color 0.3s, transform 0.3s;
}
.warum__item:hover { border-color: var(--magenta); transform: translateX(4px); }
.warum__item h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.4rem; }
.warum__item p { color: var(--plum-soft); }

.pull-quote {
  max-width: 760px; margin: 3.4rem auto 0; text-align: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.85rem); line-height: 1.4; color: var(--magenta-deep);
  position: relative; padding: 0 1.5rem;
}
.pull-quote::before {
  content: "“"; font-size: 4rem; color: var(--rose); position: absolute;
  top: -1.6rem; left: 50%; transform: translateX(-50%);
}

/* =========================================================
   ABLAUF — Steps
   ========================================================= */
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  counter-reset: step;
}
.step {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card); position: relative; text-align: center;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--blush), var(--magenta));
  color: var(--white); font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600;
}
.step h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.4rem; }
.step p { color: var(--plum-soft); font-size: 0.95rem; }

/* =========================================================
   EINZUGSGEBIET
   ========================================================= */
.gebiet__inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center;
  background: linear-gradient(150deg, var(--rose-soft), var(--creme-2));
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 4rem);
}
.gebiet__text p { color: var(--plum-soft); font-size: 1.06rem; margin-top: 0.9rem; }
.gebiet__hint { font-style: italic; }
.gebiet__badge { display: flex; justify-content: center; }
.radius {
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--white) 40%, transparent 70%),
              conic-gradient(from 0deg, var(--rose), var(--blush), var(--magenta), var(--rose));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); text-align: center;
  border: 6px solid var(--white);
}
.radius__num { font-family: var(--font-serif); font-size: 3.4rem; font-weight: 600; color: var(--magenta-deep); line-height: 1; }
.radius__unit { font-size: 0.95rem; color: var(--plum); letter-spacing: 1px; }
.radius__center { font-size: 0.78rem; color: var(--plum-soft); margin-top: 0.3rem; }

/* =========================================================
   KONTAKT / FORMULAR
   ========================================================= */
.kontakt { position: relative; }
.form {
  max-width: 860px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(231, 183, 193, 0.5);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; color: var(--plum); margin-bottom: 0.45rem; font-weight: 400; }
.req { color: var(--magenta); }

.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 1rem; font-weight: 300; color: var(--plum);
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--rose-soft);
  border-radius: 12px; background: var(--creme);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--magenta); background: var(--white);
  box-shadow: 0 0 0 4px rgba(184, 74, 115, 0.12);
}
.field textarea { resize: vertical; }

.consent {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.92rem; color: var(--plum-soft); cursor: pointer;
}
.consent input { width: 20px; height: 20px; accent-color: var(--magenta); margin-top: 2px; flex-shrink: 0; }

.form__foot { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.form__hint { font-size: 0.9rem; color: var(--plum-soft); }
.form__hint.success { color: #2e7d5b; font-weight: 400; }
.form__hint.error { color: var(--magenta-deep); font-weight: 400; }
.field input:invalid.touched, .field select:invalid.touched { border-color: var(--blush); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--plum); color: rgba(255,255,255,0.82);
  padding: 3.5rem 1.5rem 2rem; margin-top: 2rem;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer .brand__name { color: var(--white); }
.footer .brand__sub { color: var(--rose); }
.footer__brand p { margin-top: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer__links, .footer__legal { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a, .footer__legal a { font-size: 0.95rem; transition: color 0.2s; }
.footer__links a:hover, .footer__legal a:hover { color: var(--rose); }
.footer__copy { text-align: center; margin-top: 1.8rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* =========================================================
   REVEAL-ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero__image { height: 42vh; min-height: 300px; order: -1; border-radius: var(--radius-lg); }
  .ueber__grid { grid-template-columns: 1fr; }
  .ueber__photo { max-width: 360px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  /* 2-spaltig gehen 3 hohe + 3 normale Kacheln nicht glatt auf — die letzte wird breit */
  .gallery__item--breit { grid-column: span 2; }
  .gebiet__inner { grid-template-columns: 1fr; text-align: center; }
  .gebiet__text h2 br { display: none; }
  .footer__inner { grid-template-columns: 1fr; }

  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--creme); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.6rem; transform: translateX(100%);
    transition: transform 0.35s ease; box-shadow: -20px 0 60px -30px rgba(62,39,51,0.5);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__burger { display: flex; z-index: 60; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .warum__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .form__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
