/* ============================================================
   Christiane – Pflegeberatung & Reisebetreuung
   Farben: Dunkelblau #173865 · Grün #37B84A · Creme #F5F1E6
   ============================================================ */

:root {
  --blue: #173865;
  --blue-soft: #24508c;
  --green: #37B84A;
  --green-dark: #2c9a3c;
  --cream: #F5F1E6;
  --cream-dark: #EAE3D2;
  --white: #ffffff;
  --text: #2b3442;
  --text-muted: #5c6675;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(23, 56, 101, 0.10);
  --shadow-soft: 0 4px 14px rgba(23, 56, 101, 0.08);
  --font: 'Nunito', 'Segoe UI', system-ui, sans-serif;
}

/* ===== Basis ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Platz für den fixierten Header */
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

h1, h2, h3, h4 {
  color: var(--blue);
  line-height: 1.25;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-dark); }

.accent { color: var(--green); }

/* Verhindert den Zeilenumbruch innerhalb eines Wortes/Namens (z. B. Lipus-Heinemann) */
.nowrap { white-space: nowrap; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(55, 184, 74, 0.12);
  padding: 0.3em 1em;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: #a9e7b3;
  background: rgba(255, 255, 255, 0.10);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(55, 184, 74, 0.35);
}

.btn-primary:hover { background: var(--green-dark); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-ghost:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(245, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-logo { height: 48px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { color: var(--blue); font-size: 1.1rem; font-weight: 800; }
.brand-text small { color: var(--text-muted); font-size: 0.75rem; font-weight: 600; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  padding: 0.5em 1em;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(23, 56, 101, 0.08);
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  margin-left: 0.4rem;
}

.nav-cta:hover,
.nav-cta.is-active {
  background: var(--green-dark);
  color: var(--white);
}

/* Hamburger (mobil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(55, 184, 74, 0.10), transparent 55%),
    var(--cream);
  padding: 150px 0 110px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 34em;
  margin: 1.2rem 0 2rem;
}

.start-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.start-note svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 480px) {
  .start-note { font-size: 0.85rem; padding: 0.5rem 1rem; }
  .start-note svg { width: 16px; height: 16px; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.portrait-frame {
  position: relative;
  width: min(380px, 100%);
  margin-inline: auto;
  border-radius: 46% 54% 52% 48% / 48% 46% 54% 52%;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
  animation: blob 12s ease-in-out infinite alternate;
}

@keyframes blob {
  0%   { border-radius: 46% 54% 52% 48% / 48% 46% 54% 52%; }
  100% { border-radius: 54% 46% 48% 52% / 52% 54% 46% 48%; }
}

.portrait-frame img { aspect-ratio: 1; object-fit: cover; }

.hero-wave {
  position: absolute;
  inset: auto 0 -1px 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 60px; }

/* ===== Sektionen ===== */
.section { padding: 90px 0; }

.section-tinted { background: var(--cream); }

.section-head {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-head h2 { margin-bottom: 0.6rem; }
.section-head p { color: var(--text-muted); }

/* Slogan/Untertitel unter der großen Themen-Überschrift */
.section-tagline {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.section-head-light .section-tagline { color: #a9e7b3; }

/* ===== Über mich (Split-Layout) ===== */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-card img { aspect-ratio: 4 / 5; object-fit: cover; }

.split-text h2 { margin-bottom: 0.6rem; }
.split-text p { color: var(--text-muted); }

/* ===== Checklisten ===== */
.checklist {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.35em;
  height: 1.35em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(55, 184, 74, 0.15);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.85rem;
}

/* ===== Karten (Pflegeberatung) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.9rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(55, 184, 74, 0.12);
  color: var(--green-dark);
}

.card-icon svg { width: 28px; height: 28px; }

.card p {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-badge {
  grid-column: 1 / -1;
  justify-self: start;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(55, 184, 74, 0.12);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* ===== Kontaktblock im Bereich Pflegeberatung ===== */
.contact-cta {
  margin-top: 3rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-cta-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48em;
  margin-bottom: 1.8rem;
}

.contact-cta .section-tagline {
  color: #a9e7b3;
  margin-bottom: 0.4rem;
}

.contact-cta .contact-info { margin: 0; }

/* ===== Zweispaltige Listenblöcke (Pflegeberatung & Reisebetreuung) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.two-col h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card-grid + .two-col { margin-top: 3.5rem; }

/* Listenblöcke in einer Karte verankern (Pflegeberatung) */
.list-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-soft);
  gap: 0;
}

.list-panel > div:first-child {
  border-right: 1px solid rgba(23, 56, 101, 0.10);
  padding-right: 3rem;
}

.list-panel > div:last-child {
  padding-left: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.promise-card {
  margin-top: 2rem;
  background: var(--cream);
  border-left: 5px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.promise-card h4 { margin-bottom: 0.5rem; }
.promise-card p { color: var(--text-muted); }

.info-box {
  margin-top: 3rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(23, 56, 101, 0.05);
  border: 1px solid rgba(23, 56, 101, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
}

.info-icon svg { width: 24px; height: 24px; }

.info-box h4 { margin-bottom: 0.3rem; }
.info-box p { color: var(--text-muted); }

/* Auf Creme-Hintergrund wirkt der Kasten wie die Karten */
.section-tinted .info-box {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

/* ===== Preise (Reisebetreuung) ===== */
.price-panel {
  margin-top: 3rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(23, 56, 101, 0.08);
}

.price-panel > h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.price-intro {
  color: var(--text-muted);
  max-width: 60ch;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin: 1.8rem 0;
}

.price-figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  border-left: 5px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.8rem;
  text-align: center;
}

.price-figure-label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-figure-amount {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  margin: 0.2rem 0;
}

.price-figure-unit {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Tagespauschale-Karte im Preis-Grid (Stil wie "Mein Versprechen") */
.price-grid .promise-card { margin-top: 0; }

.price-notes { margin-top: 0.5rem; }

/* ===== Bildergalerie (Reisebetreuung) ===== */
.travel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.travel-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ===== Kontakt ===== */
.section-dark {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(55, 184, 74, 0.15), transparent 50%),
    var(--blue);
}

.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255, 255, 255, 0.75); }

/* Kontakt: Foto neben den Kontaktdaten */
.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.contact-photo {
  max-width: 300px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Kontaktkarten stapeln neben dem Foto */
.contact-layout .contact-info { grid-template-columns: 1fr; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 1.6rem;
}

/* Textspalte darf schrumpfen, damit lange Adressen (z. B. E-Mail) im Kästchen umbrechen */
.contact-item > div:last-child { min-width: 0; }

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  color: #a9e7b3;
}

.contact-icon svg { width: 24px; height: 24px; }

.contact-item h4 { color: var(--white); margin-bottom: 0.15rem; }
.contact-item p { color: rgba(255, 255, 255, 0.9); margin: 0; overflow-wrap: anywhere; }
.contact-item a { color: inherit; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-item small { color: rgba(255, 255, 255, 0.55); }

/* ===== Unterseiten (Impressum & Datenschutz) ===== */
.page-section {
  padding: 150px 0 80px;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2.2rem 0 0.7rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.6rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0.4em 0 1em;
  padding-left: 1.4em;
}

.legal-content li { margin-bottom: 0.3em; }

.back-link { margin-top: 2.5rem; }

/* ===== Footer ===== */
.site-footer {
  background: #102a4d;
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer-brand p { margin: 0; line-height: 1.5; }

.footer-logo { height: 54px; width: auto; }

.footer-nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.8rem;
}

.footer-nav a,
.footer-meta a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover,
.footer-meta a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 0;
  font-size: 0.85rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
}

.footer-bottom-inner p { margin: 0; }

.footer-meta { font-size: 0.85rem; }

/* ===== Scroll-Animationen ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .portrait-frame { animation: none; }
}

/* ===== Responsiv ===== */
@media (max-width: 900px) {
  .hero { padding: 130px 0 90px; }

  .hero-inner,
  .split,
  .two-col,
  .contact-layout,
  .contact-info,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .travel-gallery { grid-template-columns: repeat(3, 1fr); }

  .list-panel { padding: 1.8rem; }

  .list-panel > div:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(23, 56, 101, 0.10);
    padding: 0 0 1.8rem;
  }

  .list-panel > div:last-child {
    padding: 1.8rem 0 0;
  }

  .hero-image { order: -1; }
  .portrait-frame { width: min(280px, 80%); }

  .split-image { max-width: 420px; }

  .footer-inner,
  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-brand { flex-direction: column; }

  .footer-nav,
  .footer-meta { justify-content: center; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 1rem 4%;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .main-nav.is-open { transform: translateY(0); }

  .nav-link { padding: 0.9em 1em; text-align: center; }
  .nav-cta { margin-left: 0; margin-top: 0.4rem; }

  .brand-text small { display: none; }

  .section { padding: 70px 0; }

  .contact-cta,
  .price-panel { padding: 1.8rem; }

  /* Galerie als kompakte Wisch-Leiste – spart vertikales Scrollen */
  .travel-gallery {
    display: flex;
    grid-template-columns: none;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4%;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }

  .travel-gallery img {
    flex: 0 0 82%;
    width: 82%;
    scroll-snap-align: center;
  }
}
