/* ============================================================
   Bettina Ganz – Transformationstherapie
   Warmes, natürliches Design · 2026
   ============================================================ */

:root {
  /* Farben */
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-alt: #f2ede4;
  --primary: #5f7351;
  --primary-dark: #48593d;
  --primary-light: #e8ede2;
  --accent: #c08361;
  --accent-dark: #a76b4a;
  --text: #3d3a35;
  --muted: #756f65;
  --border: #e5dfd3;

  /* Typografie (systemeigene Schriften – DSGVO-sicher, kein Google Fonts) */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --shadow: 0 4px 24px rgba(61, 58, 53, 0.08);
  --shadow-lg: 0 10px 40px rgba(61, 58, 53, 0.12);
  --container: 1100px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--primary-dark); }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-dark);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin: 0 0 1.2em; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Header & Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand { text-decoration: none; line-height: 1.2; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.brand-tagline {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover { background: var(--primary-light); color: var(--primary-dark); }
.main-nav a[aria-current="page"] { background: var(--primary); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--primary-dark);
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 0.75rem 1.5rem 1.25rem; }
  .main-nav a { padding: 0.75rem 1rem; border-radius: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--bg) 55%, #f6e9df 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero .kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 34em;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 420px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-secondary { background: transparent; color: var(--primary-dark); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary-light); color: var(--primary-dark); }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }

/* ---------- Sektionen ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-alt { background: var(--surface-alt); }

.section-head { max-width: 44em; margin-bottom: 2.5rem; }
.section-head .kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

/* ---------- Karten ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--muted); font-size: 0.98rem; flex-grow: 1; }
.card .card-meta { font-weight: 600; color: var(--primary-dark); font-size: 0.95rem; margin: 0 0 1rem; }
.card a.card-link { font-weight: 600; text-decoration: none; }

/* ---------- Zweispaltiges Layout mit Bild ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Angebots-Detailblöcke ---------- */
.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  scroll-margin-top: 100px;
}

.service-block .service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.service-facts li {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

/* ---------- Termine ---------- */
.event-list { list-style: none; margin: 0; padding: 0; }

.event {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow);
}

.event-date {
  text-align: center;
  background: var(--primary-light);
  border-radius: 10px;
  padding: 0.55rem 0.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  font-size: 0.9rem;
}

.event-date .day { display: block; font-size: 1.35rem; font-family: var(--font-display); }

.event h3 { font-size: 1.1rem; margin: 0 0 0.15em; }
.event p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.event-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.2rem;
}

@media (max-width: 560px) {
  .event { grid-template-columns: 1fr; }
  .event-date { max-width: 130px; }
}

/* ---------- Hinweisbox ---------- */
.notice {
  background: #fdf6ee;
  border: 1px solid #ecd9c4;
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 1.3rem 1.6rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.notice strong { color: var(--text); }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-card ul { list-style: none; margin: 0; padding: 0; }
.contact-card li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-card li:last-child { border-bottom: none; }
.contact-card .label { font-weight: 700; min-width: 90px; color: var(--primary-dark); font-size: 0.9rem; }

/* ---------- Zitat ---------- */
.quote {
  text-align: center;
  max-width: 38em;
  margin: 0 auto;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--primary-dark);
  margin: 0 0 0.5em;
  line-height: 1.5;
}
.quote cite { color: var(--muted); font-style: normal; font-size: 0.95rem; }

/* ---------- CTA-Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 36em; margin: 0 auto 1.5rem; }
.cta-banner .btn-primary { background: #fff; color: var(--primary-dark); }
.cta-banner .btn-primary:hover { background: var(--surface-alt); }

/* ---------- Fließtext-Seiten (Impressum etc.) ---------- */
.prose { max-width: 46em; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.8em; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.2rem 0; }

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

/* ---------- Hilfsklassen ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ---------- Feinschliff für Smartphones ---------- */
html, body { overflow-x: hidden; }

@media (max-width: 600px) {
  body { font-size: 1rem; }

  .container { padding: 0 1.1rem; }
  .header-inner { padding: 0.75rem 1.1rem; }

  /* Hero: Bild kompakter, Text zuerst gut lesbar */
  .hero { padding: 2.2rem 0 2.8rem; }
  .hero-inner { gap: 1.5rem; }
  .hero-image img { aspect-ratio: 4 / 3; }
  .hero p.lead { font-size: 1.08rem; }

  /* Buttons: volle Breite, gut antippbar */
  .btn { display: block; width: 100%; text-align: center; padding: 0.95rem 1.5rem; }
  .btn-group { flex-direction: column; }

  /* Abstände kompakter */
  .section { padding: 2.5rem 0; }
  .card { padding: 1.4rem; }
  .service-block { padding: 1.4rem; }
  .split { gap: 1.75rem; }
  .cta-banner { padding: 1.8rem 1.4rem; }

  /* Kontaktkarte: Zeilen umbrechen statt quetschen */
  .contact-card { padding: 1.4rem; }
  .contact-card li { flex-direction: column; gap: 0.15rem; }
  .contact-card .label { min-width: 0; }

  /* Lange E-Mail-Adressen nie überlaufen lassen */
  a[href^="mailto:"] { word-break: break-all; }

  .footer-grid { gap: 1.5rem; }
  .site-footer li { padding: 0.4rem 0; }
}

@media (max-width: 400px) {
  .brand-tagline { display: none; }
  .brand-name { font-size: 1.2rem; }
}

/* Größere Tippflächen im ausgeklappten Menü */
@media (max-width: 820px) {
  .main-nav a { font-size: 1.05rem; }
}
