/* ===== Kathleen Wolf — Forever Living Seite ===== */

:root {
  --pink: #F2A6C4;
  --pink-light: #FBD9E5;
  --red: #D6455A;
  --orange: #F2994A;
  --orange-light: #FFC98A;
  --sky: #8FD3E8;
  --sky-light: #DCF3FA;
  --gold: #C9A227;
  --gold-light: #E8CD70;
  --bg: #FFFBF7;
  --bg-alt: #FDF0F0;
  --ink: #3A2233;
  --ink-soft: #7A5C68;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(58, 34, 51, 0.25);
  --shadow-sm: 0 8px 24px -12px rgba(58, 34, 51, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 34, 51, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--ink);
}
.logo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--red));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(214, 69, 90, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(214, 69, 90, 0.65); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(201, 162, 39, 0.55);
}
.btn-gold:hover { box-shadow: 0 16px 30px -10px rgba(201, 162, 39, 0.65); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-note {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 8px;
  font-style: italic;
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background: radial-gradient(circle at 15% 20%, rgba(242, 166, 196, 0.28), transparent 45%),
              radial-gradient(circle at 85% 0%, rgba(242, 153, 74, 0.22), transparent 40%),
              radial-gradient(circle at 50% 100%, rgba(143, 211, 232, 0.18), transparent 50%),
              var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 .hl { color: var(--red); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}
.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--pink) 0%, var(--red) 55%, var(--orange) 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 30px;
}
.hero-visual .photo-placeholder .avatar-big {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 2px dashed rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.hero-visual .photo-placeholder small {
  font-size: 0.78rem;
  max-width: 220px;
  opacity: 0.9;
}
.hero-visual .card-float {
  position: absolute;
  left: 22px; bottom: 22px;
  right: 22px;
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.hero-visual .card-float .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,162,39,0.14);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.hero-visual .card-float strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}

/* ===== Sections ===== */
section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: linear-gradient(120deg, var(--ink), #55283F); color: var(--white); }
.section-dark .ink-soft { color: rgba(255,255,255,0.72); }

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink); }
.section-dark .section-head h2 { color: var(--white); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 14px; }

/* ===== Grid cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(58,34,51,0.05);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--pink), var(--red));
  color: var(--white);
}
.card:nth-child(3n+2) .icon { background: linear-gradient(135deg, var(--sky), #5FB6D6); }
.card:nth-child(3n+3) .icon { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== Story / Timeline ===== */
.story-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.story-visual {
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--sky-light), var(--sky) 80%);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

/* ===== Foto-Platzhalter (werden später mit echten Fotos ersetzt) ===== */
.photo-box {
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px dashed rgba(58,34,51,0.28);
  width: 100%;
  height: 100%;
}
.photo-box.tone-sky { background: linear-gradient(150deg, var(--sky-light), var(--sky) 80%); color: var(--ink); }
.photo-box.tone-warm { background: linear-gradient(160deg, var(--pink-light), var(--pink) 55%, var(--orange-light) 100%); color: var(--ink); }
.photo-box-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 2px dashed rgba(58,34,51,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}
.photo-box strong { font-size: 0.95rem; color: var(--ink); }
.photo-box small { font-size: 0.78rem; max-width: 220px; opacity: 0.85; }
.photo-box.portrait { aspect-ratio: 3/4; }
.photo-box.wide { aspect-ratio: 16/9; }
.story-block h2 { color: var(--ink); font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.story-block p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 26px 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.1rem;
}

.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.badge-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-alt);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

/* ===== Life timeline (Über mich) ===== */
.timeline { max-width: 780px; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--sky));
}
.timeline-item:last-child::before { display: none; }
.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
  padding-top: 4px;
}
.timeline-content h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 8px; }
.timeline-content p { color: var(--ink-soft); }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--red), var(--orange) 70%, var(--gold));
  border-radius: 28px;
  padding: 60px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 480px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 10px; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(58,34,51,0.08);
}
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-row strong { display: block; color: var(--ink); margin-bottom: 3px; }
.info-row span, .info-row a { color: var(--ink-soft); font-size: 0.95rem; }
.info-row .placeholder-note { color: var(--red); font-size: 0.78rem; font-style: italic; display: block; margin-top: 2px; }

form .field { margin-bottom: 20px; }
form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 8px;
}
form input, form textarea, form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(58,34,51,0.15);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-alt);
  transition: border-color 0.2s;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--red);
}
form textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--sky-light);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ===== Footer ===== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { font-size: 0.9rem; transition: color 0.2s; }
.footer-grid ul a:hover { color: var(--gold-light); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--white); font-size: 1.2rem; }
.footer-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-style: italic; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Page hero (subpages) ===== */
.page-hero {
  padding: 64px 0 60px;
  background: radial-gradient(circle at 80% 0%, rgba(242, 153, 74, 0.18), transparent 40%),
              radial-gradient(circle at 10% 10%, rgba(242, 166, 196, 0.22), transparent 40%),
              var(--bg);
}
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3rem); color: var(--ink); max-width: 700px; }
.page-hero p { color: var(--ink-soft); font-size: 1.08rem; max-width: 560px; margin-top: 16px; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb .sep { margin: 0 6px; }
.breadcrumb .cur { color: var(--red); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid, .story-block, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 16px; }
  .timeline-item::before { left: 34px; }
}
@media (max-width: 940px) {
  .nav-links { position: fixed; top: 77px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 24px; gap: 18px; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .burger { display: flex; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 50px 0 70px; }
  .cta-banner { padding: 36px; text-align: center; justify-content: center; }
}
