/* Blog-Theme mittelmeier.com - Tokens 1:1 aus webroot/index.html :root
   (bei Design-Aenderungen der Hauptseite hier mitziehen). Nav/Footer nach dem
   Muster der Maennerseite bzw. des Hauptseiten-Footers. */
:root {
  --creme: #FDFAF7;
  --leine: #FAF6F0;
  --leine-dunkel: #EFE8DF;
  --malve: #A870A4;
  --malve-hell: #F4ECF6;
  --malve-mid: #DEC8E0;
  --malve-dunkel: #7A4A80;
  --petrol: #2D6878;
  --petrol-hell: #EBF3F6;
  --petrol-dunkel: #183848;
  --mint: #A8DBD4;
  --mint-hell: #EAF7F5;
  --gold: #B89A18;
  --text-dunkel: #221C14;
  --text-mittel: #3D3528;
  --text-hell: #9A8E80;
  --linie: #DDD0C8;
  --weiss: #ffffff;
  --radius: 12px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-weight: 300;
  font-size: 18px; line-height: 1.9;
  color: var(--text-dunkel); background: var(--creme);
  padding-top: 68px;
}

/* ---- Nav (volles Hauptseiten-Menue; Anker absolut -> /#... springt auf die
   Startseite zum Abschnitt. Hamburger-Breakpoint 1200px wie die Startseite mit
   Blog-Punkt. Optik 1:1 aus webroot/index.html.) ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,250,247,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
  padding: 0 3rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400; font-style: italic;
  color: var(--text-dunkel); text-decoration: none;
}
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-mittel); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--malve); }
.nav-links a.gold-link { color: var(--gold); }
.nav-links a.aktiv { color: var(--malve); }
.nav-cta {
  font-size: 0.85rem; letter-spacing: 0.05em;
  color: var(--malve); border: 1px solid var(--malve);
  padding: 0.55rem 1.5rem; text-decoration: none;
  border-radius: var(--radius); transition: all 0.2s;
}
.nav-cta:hover { background: var(--malve); color: var(--weiss); }

/* Hamburger (wie Startseite mit Blog-Punkt: Breakpoint 1200px, Farben malve) */
.nav-toggle { display: none; }
.nav-cta-item { display: none; }
@media (max-width: 1200px) {
  nav { padding: 0 1.5rem; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; margin-right: -10px;
    background: none; border: none; cursor: pointer;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 2px; border-radius: 2px;
    background: var(--text-dunkel); transition: transform .25s ease, opacity .2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav > .nav-cta { display: none; }
  .nav-links {
    display: flex; flex-direction: column; gap: 0; list-style: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(253,250,247,0.98); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--linie);
    padding: 0.25rem 1.5rem 1.25rem;
    box-shadow: 0 16px 28px rgba(34,28,20,0.08);
    opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  nav.nav-open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.95rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--linie); }
  .nav-links .nav-cta-item { display: block; border-bottom: none; margin-top: 1.1rem; }
  .nav-links .nav-cta-item a {
    border: 1px solid var(--malve); color: var(--malve); border-radius: var(--radius);
    text-align: center; padding: 0.9rem 0; text-transform: none; letter-spacing: 0.04em;
  }
  .nav-links .nav-cta-item a:hover { background: var(--malve); color: var(--weiss); }
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block; background: var(--malve); color: var(--weiss);
  padding: 1rem 2.25rem; font-size: 0.9rem; letter-spacing: 0.05em;
  text-decoration: none; border-radius: var(--radius); transition: background 0.2s;
  border: none; font-family: var(--sans); font-weight: 300; cursor: pointer;
}
.btn-primary:hover { background: var(--malve-dunkel); }

/* ---- Blog-Uebersicht ---- */
.blog-main { max-width: 760px; margin: 0 auto; padding: 4.5rem 1.5rem 5rem; }
.blog-kopf { margin-bottom: 3rem; }
.blog-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--malve); margin-bottom: 0.75rem;
}
.blog-kopf h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1.15;
  margin-bottom: 1rem;
}
.blog-intro { color: var(--text-mittel); max-width: 60ch; }

.blog-liste { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-karte {
  display: block; background: var(--weiss);
  border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 2.25rem;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s;
  cursor: pointer;
}
.blog-karte:hover { border-color: var(--malve); }
.blog-datum {
  display: block; font-size: 0.78rem; letter-spacing: 0.07em;
  color: var(--text-hell); margin-bottom: 0.5rem;
}
.blog-karte h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.6rem; line-height: 1.25; margin-bottom: 0.75rem;
}
.blog-teaser { color: var(--text-mittel); margin-bottom: 1rem; }
.blog-weiter { font-size: 0.85rem; letter-spacing: 0.05em; color: var(--malve); }
.blog-karte:hover .blog-weiter { color: var(--malve-dunkel); }
.blog-leer { color: var(--text-mittel); }

/* ---- Artikel ---- */
.blog-zurueck { margin-bottom: 2.25rem; }
.blog-zurueck a {
  font-size: 0.82rem; color: var(--malve);
  text-decoration: none; letter-spacing: 0.03em;
}
.blog-zurueck a:hover { text-decoration: underline; }
.blog-artikel h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 2.7rem); line-height: 1.2;
  margin: 0.4rem 0 2rem;
}
.blog-inhalt p { margin-bottom: 1.4rem; color: var(--text-mittel); }
.blog-inhalt h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.55rem; line-height: 1.3;
  margin: 2.4rem 0 1rem; color: var(--text-dunkel);
}
.blog-inhalt h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.25rem; margin: 2rem 0 0.75rem;
}
.blog-inhalt a { color: var(--malve); }
.blog-inhalt ul, .blog-inhalt ol { margin: 0 0 1.4rem 1.4rem; color: var(--text-mittel); }
.blog-inhalt li { margin-bottom: 0.4rem; }
.blog-inhalt img { max-width: 100%; height: auto; border-radius: var(--radius); }
.blog-inhalt blockquote {
  border-top: 3px solid var(--malve-mid); background: var(--malve-hell);
  border-radius: var(--radius); padding: 1.5rem 1.75rem; margin: 0 0 1.4rem;
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
}

/* ---- Podcast (Click-to-Load) ---- */
.podcast-embed {
  background: var(--leine); border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 1.75rem; margin: 2.25rem 0;
}
.podcast-titel { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.4rem; }
.podcast-hinweis { font-size: 0.85rem; color: var(--text-hell); margin-bottom: 1rem; }
.podcast-frame { width: 100%; height: 232px; border: 0; border-radius: var(--radius); }

/* ---- Abschluss-CTA im Artikel ---- */
.blog-cta {
  background: var(--malve-hell); border: 1px solid var(--malve-mid);
  border-radius: var(--radius); padding: 2rem; margin-top: 3rem;
  text-align: center;
}
.blog-cta p {
  font-family: var(--serif); font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

/* ---- Footer (Nachbau Hauptseite) ---- */
footer {
  background: var(--leine);
  padding: 4rem 5rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  font-size: 0.95rem; line-height: 1.9;
  border-top: 1px solid var(--linie);
}
.footer-logo {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  font-style: italic; margin-bottom: 0.5rem;
}
.footer-mail { color: var(--malve); text-decoration: none; }
.footer-tel { color: var(--text-mittel); text-decoration: none; }
.footer-tel-passiv { color: var(--text-mittel); }
footer h4 {
  font-size: 0.70rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-hell); margin-bottom: 1rem; font-weight: 400;
}
footer div > a {
  display: block; color: var(--text-mittel);
  text-decoration: none; transition: color 0.2s;
}
footer div > a:hover { color: var(--malve); }
.footer-copy {
  grid-column: 1/-1; padding-top: 2rem;
  border-top: 1px solid var(--linie);
  font-size: 0.70rem; color: var(--text-hell);
  display: flex; justify-content: space-between;
}

@media (max-width: 960px) {
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .footer-copy { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 700px) {
  .blog-main { padding: 3rem 1.25rem 3.5rem; }
  .blog-karte { padding: 1.5rem; }
}
