/*
 * SPA Pflegeberatung Bremen — zentrale Theme-Variablen
 * --------------------------------------------------------------------------
 * Aenderungen an Farben, Schriftgroessen und Abstaenden NUR hier vornehmen.
 * Alle Seiten lesen die Werte ueber CSS-Custom-Properties (var(--name)).
 * --------------------------------------------------------------------------
 */

:root {
  /* SPA-Markenfarben (aus dem Logo abgeleitet) */
  --color-primary:        #E83A7A;   /* SPA-Pink/Magenta — Hauptfarbe */
  --color-primary-dark:   #C42569;
  --color-primary-light:  #F47BAB;
  --color-akzent:         #9CC83C;   /* SPA-Gruen — frischer Akzent (CTAs, Highlights) */
  --color-akzent-dark:    #7BA32E;

  /* Neutrale Farben */
  --color-text:           #3D4D5C;   /* SPA-Anthrazit (aus Logo-Schrift) */
  --color-text-muted:     #6B7785;
  --color-bg:             #FFFFFF;
  --color-bg-soft:        #FAFBFC;
  --color-bg-section:     #FCEEF4;   /* zartes Pink fuer Akzent-Sektionen */
  --color-border:         #E5E7EB;

  /* Schriftarten */
  --font-headline: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Schriftgroessen */
  --fs-h1:    clamp(2.25rem, 4.5vw, 3.5rem);
  --fs-h2:    clamp(1.75rem, 3vw, 2.25rem);
  --fs-h3:    1.375rem;
  --fs-body:  1.0625rem;
  --fs-small: 0.9375rem;

  /* Abstaende */
  --space-section: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;

  /* Schatten + Radien */
  --radius-card:  16px;
  --radius-pill:  9999px;
  --shadow-card:  0 4px 24px rgba(232, 58, 122, 0.08);
  --shadow-hover: 0 8px 32px rgba(232, 58, 122, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--color-text);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p  { margin: 0 0 1em; }
a  { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); text-decoration: underline; }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section { padding: var(--space-section) 0; }
.section--soft    { background: var(--color-bg-soft); }
.section--accent  { background: var(--color-bg-section); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-hover);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--ghost:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Logo-Bild (loest die "SPA"-Mark-Box ab, sobald spa-logo.png hochgeladen ist) */
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
}
@media (max-width: 540px) { .brand-logo { height: 44px; } }
.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}
.nav a:hover, .nav a.active {
  color: var(--color-primary);
  background: var(--color-bg-section);
  text-decoration: none;
}
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
  }
  .nav-toggle {
    display: flex;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1rem;
  }
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-bg) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 var(--space-section);
}

/* Variante "blau" — nur auf der Startseite, frischer Sky-Look. */
.hero--blau {
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 58, 122, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(156, 200, 60, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, #C8E2F2 0%, #E8F4FB 45%, #F4F9FD 100%);
  position: relative;
  overflow: hidden;
}
.hero--blau::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
  pointer-events: none;
}
.hero--blau .hero-quote { color: #205F8A; }
.hero--blau h1 { color: #1A4566; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-quote {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-image {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  background: var(--color-bg-section);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-height: 320px; aspect-ratio: 16/10; }
}

/* ---- Saeulen / Cards ---- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* Bild oben in der Card — full-bleed bis zum Rand, schiebt sich aus dem Padding raus */
.card-image {
  display: block;
  width: calc(100% + 4rem);
  max-width: none;
  margin: -2rem -2rem 1.5rem;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  background: var(--color-bg-section);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-bg-section);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 0.6em; }

/* ---- Statistik-Block ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.25rem 1rem;
  text-align: center;
  border-top: 4px solid var(--color-primary);
}
.stat-value { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); }
.stat-label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.25rem; }

/* ---- Booking-Widget Wrapper ---- */
.booking-section { background: var(--color-bg-section); }
.booking-frame-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--color-border);
}
.booking-frame {
  width: 100%;
  border: 0;
  display: block;
  min-height: 1100px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-text);   /* Anthrazit (Logo-Schriftfarbe) */
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-section) 0 2rem;
  font-size: 0.95rem;
  border-top: 4px solid var(--color-primary);   /* dezenter Pink-Akzent */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 0.25rem 0; }

.footer-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Utility ---- */
.text-muted { color: var(--color-text-muted); }
.lead       { font-size: 1.15rem; color: var(--color-text-muted); }
.center     { text-align: center; }
.mt-2       { margin-top: 1rem; }
.mt-4       { margin-top: 2rem; }
</content>
</invoke>