/* Naturheilpraxis Bich — main stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Courgette&family=Quicksand:wght@400;500;600&display=swap');

:root {
  --primary:   #ddad9f;  /* terracotta accent */
  --secondary: #c1b2dd;  /* lavender */
  --pink:      #ddb2c6;  /* pink icon */
  --dark:      #413d3c;  /* topbar / dark bg */
  --nav:       #2a2929;  /* nav text */
  --text:      #535353;  /* body text */
  --muted:     #6a7c76;  /* teal muted / Tanja name */
  --btn:       #68605e;  /* button bg */
  --light:     #e9f3e1;  /* light green section */
  --border:    #a7b3ab;  /* divider / border */
  --bg:        #ffffff;
}

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

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1em; }
ul, ol { margin: 0.75em 0 1em 1.5em; }
h1, h2, h3, h4, h5 { line-height: 1.3; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TOPBAR ========== */
.praxis-topbar {
  background: var(--dark);
  padding: 6px 0;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
}
.praxis-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.praxis-topbar a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.praxis-topbar a:hover { color: var(--primary); text-decoration: none; }
.praxis-topbar .topbar-links { display: flex; gap: 24px; flex-wrap: wrap; }
.praxis-topbar .topbar-right { color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; }

/* ========== NAV / HEADER ========== */
.praxis-nav-wrap {
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 99;
}
.praxis-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.3px;
  text-transform: lowercase;
}
.nav-logo:hover { text-decoration: none; color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--nav);
  text-decoration: none;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--nav);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--nav); text-decoration: none; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--btn);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--light); color: var(--btn); text-decoration: none; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--dark);
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
}

/* ========== SECTION LABEL STYLE ========== */
.section-label {
  font-family: 'Courgette', cursive;
  font-size: 18px;
  color: var(--primary);
  text-align: center;
  display: block;
  margin-bottom: 8px;
}
.section-label.left { text-align: left; }
.divider-line {
  width: 30px;
  height: 3px;
  background: var(--border);
  margin: 0 auto 16px;
}
.divider-line.left { margin: 0 0 16px 0; }
.section-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-top: -8px;
}
.section-title.left { text-align: left; }

/* ========== HERO ========== */
.praxis-hero {
  background: linear-gradient(160deg, #f5ede8 0%, #e8f0eb 50%, #f0ece8 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}
.praxis-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 90px;
  font-weight: 600;
  color: var(--btn);
  line-height: 1;
  letter-spacing: -2px;
}
.hero-h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--btn);
  margin-top: -8px;
}
.hero-sub {
  font-family: 'Courgette', cursive;
  font-size: 18px;
  color: var(--primary);
  margin: 24px 0 8px;
}
.hero-services {
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-btn {
  display: inline-block;
  background: var(--btn);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.hero-btn:hover { background: var(--light); color: var(--btn); text-decoration: none; }

/* ========== SECTION PRAXIS (Tanja Bich) ========== */
.praxis-section {
  padding: 100px 0 80px;
  background: var(--bg);
}
.praxis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.praxis-photo {
  text-align: center;
}
.praxis-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid var(--light);
  margin: 0 auto 16px;
}
.praxis-name {
  font-size: 27px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}
.praxis-title-sub {
  font-family: 'Courgette', cursive;
  font-size: 18px;
  color: var(--text);
  text-align: center;
}
.praxis-timeline { list-style: none; margin: 0; padding: 0; }
.praxis-timeline li {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}
.praxis-timeline .year {
  font-weight: 600;
  color: var(--muted);
  min-width: 62px;
  background: var(--light);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  flex-shrink: 0;
}

/* ========== PATIENTEN ========== */
.patienten-section {
  padding: 100px 0;
  background: var(--light);
}
.patienten-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.patient-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.patient-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.patient-icon.lavender { background: var(--secondary); }
.patient-icon.terracotta { background: var(--primary); }
.patient-icon.pink { background: var(--pink); }
.patient-box h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.patient-box p { font-size: 14px; color: #1f1f1f; line-height: 1.5; margin: 0; }

/* ========== BEHANDLUNGEN ========== */
.behandlungen-section {
  padding: 100px 0;
  background: var(--bg);
}
.behandlungen-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}
.behandlung-item img {
  width: 80px;
  margin: 0 auto 8px;
}
.behandlung-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  display: block;
}
.behandlung-divider {
  width: 30px;
  height: 3px;
  background: var(--border);
  margin: 8px auto 0;
}

/* ========== CTA TERMIN ========== */
.cta-termin {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2929 100%);
  text-align: center;
}
.cta-termin .section-label { color: #fff; }
.cta-termin .divider-line { background: var(--border); }
.cta-termin .section-title { color: #fff; }
.cta-termin .hero-btn { margin-top: 24px; }

/* ========== THERAPIEN ========== */
.therapien-section {
  padding: 100px 0;
  background: var(--bg);
}
.therapien-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
  margin-top: 48px;
}
.therapie-item h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--light);
  padding-bottom: 8px;
}
.therapie-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ========== KOSTEN ========== */
.kosten-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2929 100%);
  text-align: center;
}
.kosten-section .section-label { color: #fff; }
.kosten-section .divider-line { background: #fff; }
.kosten-section .section-title { color: #fff; }
.kosten-section .kosten-text {
  max-width: 700px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.8;
}

/* ========== KONTAKT ========== */
.kontakt-section {
  padding: 100px 0;
  background: var(--border);
}
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.kontakt-info h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: lowercase;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 24px;
}
.kontakt-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kontakt-list li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kontakt-list a { color: #fff; }
.kontakt-list a:hover { color: var(--dark); }
.kontakt-form h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.6); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.form-submit:hover { background: var(--light); color: var(--btn); }

/* ========== FOOTER ========== */
.praxis-footer {
  background: var(--border);
  border-top: 3px solid rgba(255,255,255,0.3);
  padding: 30px 0;
  text-align: center;
}
.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: 12px;
  padding: 0;
}
.footer-nav a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--dark); }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-divider {
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 12px auto;
}

/* ========== INNER PAGE HERO ========== */
.page-hero {
  background: linear-gradient(160deg, #f5ede8 0%, #e8f0eb 100%);
  padding: 60px 20px;
  text-align: center;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 600;
  color: var(--btn);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== CONTENT PAGE ========== */
.page-content {
  padding: 60px 0;
}
.page-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 16px;
  border-left: 4px solid var(--primary);
  padding-left: 14px;
}
.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  margin: 24px 0 12px;
}
.page-content p { color: var(--text); margin-bottom: 1em; }
.page-content ul { margin-bottom: 1em; color: var(--text); }
.page-content a { color: var(--primary); }
.breadcrumb {
  font-size: 14px;
  color: var(--border);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--primary); }

/* ========== DATENSCHUTZ/IMPRESSUM ========== */
.legal-page { max-width: 860px; }
.legal-page h1 { font-size: 32px; color: var(--dark); margin-bottom: 32px; }
.legal-page h2 { font-size: 22px; color: var(--dark); margin: 28px 0 12px; border-left: 3px solid var(--primary); padding-left: 12px; }
.legal-page h3 { font-size: 18px; color: var(--muted); margin: 20px 0 10px; }

/* ========== ARTICLE TABLE (DOCX) ========== */
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; overflow-x: auto; display: block; }
.article-table th { background: var(--primary); color: #fff; padding: 12px 14px; text-align: left; font-weight: 600; }
.article-table td { padding: 10px 14px; border-bottom: 1px solid var(--light); }
.article-table tr:nth-child(even) td { background: #f8f9fa; }
.article-table tfoot td { font-size: 12px; color: var(--text); background: #f0f4f8; font-style: italic; }

.faq-section h3 {
  background: #f0f4f8;
  padding: 12px 16px;
  border-left: 4px solid var(--primary);
  margin: 0 0 2px;
  font-size: 17px;
  color: var(--dark);
  font-weight: 600;
}
.faq-section p {
  padding: 12px 16px;
  background: #fafafa;
  border-left: 4px solid var(--light);
  margin-bottom: 16px;
  color: var(--text);
}

/* ========== 404 ========== */
.error-404 { text-align: center; padding: 100px 20px; }
.error-404 .big-404 { font-size: 120px; font-weight: 700; color: var(--primary); line-height: 1; }
.error-404 h2 { font-size: 28px; margin: 16px 0; color: var(--dark); }
.error-404 p { color: var(--text); margin-bottom: 0; }
.btn-back {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-back:hover { background: var(--primary); text-decoration: none; color: #fff; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .behandlungen-grid { grid-template-columns: repeat(3, 1fr); }
  .therapien-grid { gap: 32px 40px; }
}

@media (max-width: 768px) {
  .hero-h1 { font-size: 60px; }
  .hero-h2 { font-size: 26px; }
  .praxis-layout { grid-template-columns: 1fr; }
  .patienten-boxes { grid-template-columns: 1fr; }
  .behandlungen-grid { grid-template-columns: repeat(3, 1fr); }
  .therapien-grid { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); padding: 16px; z-index: 100; }
  .nav-toggle { display: block; }
  .praxis-nav { flex-wrap: wrap; gap: 12px; position: relative; }
  .section-title { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 42px; }
  .hero-h2 { font-size: 22px; }
  .behandlungen-grid { grid-template-columns: repeat(2, 1fr); }
  .praxis-topbar .topbar-links { flex-direction: column; gap: 4px; }
}
