/* ==========================================================
   Schlank und Vital Kremmen — Brand-Styles
   Farben & Schriften: context/brand.md (Stand 07.07.2026)
   ========================================================== */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-variable.woff2') format('woff2');
}

:root {
  --beige: #F5F1EA;
  --salbei: #6F7F5F;
  --dunkelgruen: #3F4A3C;
  --altrosa: #E8B7C0;
  --pink: #E91E63;
  --weiss: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;

  --max-width: 1080px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dunkelgruen);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dunkelgruen);
}

h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 3.5rem 0; }

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

.site-header {
  background: var(--beige);
  border-bottom: 1px solid var(--altrosa);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .7rem;
  padding-bottom: .7rem;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dunkelgruen);
  text-decoration: none;
  line-height: 1.2;
}

.logo span { color: var(--salbei); }

.main-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--dunkelgruen);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
}

.main-nav a:hover { color: var(--pink); }

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

.btn {
  display: inline-block;
  background: var(--pink);
  color: var(--weiss);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  text-align: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(233, 30, 99, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(233, 30, 99, .35);
}

.btn-secondary {
  background: var(--weiss);
  color: var(--dunkelgruen);
  border: 2px solid var(--salbei);
  box-shadow: none;
}

.btn-secondary:hover { box-shadow: 0 4px 12px rgba(63, 74, 60, .15); }

.btn-group {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.4rem;
}

.micro {
  font-size: .88rem;
  margin-top: .9rem;
  color: var(--dunkelgruen);
  opacity: .85;
}

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

.hero {
  text-align: center;
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(232, 183, 192, .35), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(111, 127, 95, .18), transparent 55%),
    var(--beige);
}

.hero .kicker {
  display: inline-block;
  background: var(--salbei);
  color: var(--weiss);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}

.hero h1 { max-width: 20ch; margin: 0 auto .9rem; }

.hero .sub {
  max-width: 55ch;
  margin: 0 auto 1.2rem;
  font-size: 1.13rem;
}

/* ---------- Vorteile (Karten) ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
  margin-top: 1.8rem;
}

.card {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: 0 3px 16px rgba(63, 74, 60, .07);
  border-top: 4px solid var(--altrosa);
}

.card .icon {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: .7rem;
  display: block;
}

/* ---------- So einfach geht's ---------- */

.steps { counter-reset: step; margin-top: 1.6rem; display: grid; gap: 1.1rem; }

.step {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.4rem 4.4rem;
  position: relative;
  box-shadow: 0 3px 16px rgba(63, 74, 60, .07);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.2rem;
  top: 1.3rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--salbei);
  color: var(--weiss);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Angebote ---------- */

.angebote { background: var(--weiss); }

.angebot {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--beige);
}

.angebot:last-of-type { border-bottom: none; }

.angebot-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--beige);
  border: 3px solid var(--altrosa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.preis-hinweis {
  display: inline-block;
  background: var(--beige);
  border-left: 4px solid var(--pink);
  padding: .5rem .9rem;
  border-radius: 0 8px 8px 0;
  font-size: .95rem;
  font-weight: 600;
  margin-top: .3rem;
}

/* ---------- Emotional / Zitat ---------- */

.emotional {
  background: var(--dunkelgruen);
  color: var(--beige);
  text-align: center;
}

.emotional p {
  max-width: 60ch;
  margin: 0 auto 1rem;
  font-size: 1.12rem;
}

.emotional strong { color: var(--altrosa); }

/* ---------- Über Nadine ---------- */

.ueber .inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.2rem;
  align-items: center;
}

.portrait-foto {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait-foto img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.studio-bild { text-align: center; }

.studio-bild img {
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(63, 74, 60, .18);
  margin: 0 auto;
}

.bildunterschrift {
  font-size: .9rem;
  opacity: .8;
  margin-top: .9rem;
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--altrosa), var(--salbei));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--weiss);
  font-family: var(--font-heading);
  font-size: 3.5rem;
  overflow: hidden;
}

.portrait-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Garantie ---------- */

.garantie {
  background: var(--altrosa);
  text-align: center;
}

.garantie .box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 6px 24px rgba(63, 74, 60, .12);
}

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

.rating-badge {
  display: inline-block;
  background: var(--weiss);
  border: 2px solid var(--altrosa);
  border-radius: 999px;
  padding: .45rem 1.2rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dunkelgruen);
  margin-bottom: .5rem;
}

.testimonial {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 3px 16px rgba(63, 74, 60, .07);
  border-left: 4px solid var(--salbei);
  font-style: italic;
}

.testimonial footer {
  margin-top: .8rem;
  font-style: normal;
  font-weight: 600;
  font-size: .92rem;
  color: var(--salbei);
}

/* ---------- FAQ ---------- */

.faq details {
  background: var(--weiss);
  border-radius: 10px;
  margin-bottom: .7rem;
  box-shadow: 0 2px 10px rgba(63, 74, 60, .06);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.05rem 1.3rem;
  list-style: none;
  position: relative;
  padding-right: 2.6rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq details[open] summary::after { content: '–'; }

.faq details p { padding: 0 1.3rem 1.1rem; }

/* ---------- Abschluss-CTA ---------- */

.abschluss {
  text-align: center;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(232, 183, 192, .4), transparent 55%),
    var(--beige);
}

.abschluss p { max-width: 58ch; margin-left: auto; margin-right: auto; }

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

.site-footer {
  background: var(--dunkelgruen);
  color: var(--beige);
  text-align: center;
  padding: 2.2rem 1.25rem;
  font-size: .95rem;
}

.site-footer strong { color: var(--weiss); }

.site-footer a { color: var(--altrosa); text-decoration: none; }

.site-footer a:hover { text-decoration: underline; }

.site-footer .legal { margin-top: .9rem; }

/* ---------- Rechtsseiten ---------- */

.legal-page { padding: 3rem 0 4rem; }
.legal-page h1 { margin-bottom: 1.5rem; }
.legal-page h2 { font-size: 1.3rem; margin-top: 2rem; }

.todo-hinweis {
  background: #FFF3CD;
  border: 1px solid #E0C878;
  border-radius: 8px;
  padding: .8rem 1rem;
  font-size: .95rem;
  margin: 1rem 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  section { padding: 2.6rem 0; }

  .site-header { position: static; }
  .site-header .container { justify-content: center; text-align: center; }
  .main-nav { gap: .5rem 1rem; }
  .main-nav a { font-size: .85rem; }
  .main-nav { justify-content: center; }

  .angebot { grid-template-columns: 1fr; }
  .angebot-icon { width: 72px; height: 72px; font-size: 1.9rem; }

  .ueber .inner { grid-template-columns: 1fr; }
  .portrait-placeholder { max-width: 280px; margin: 0 auto; }
  .portrait-foto img { max-width: 260px; }

  .btn { width: 100%; }
  .btn-group { flex-direction: column; }
}
