/* ========================================================
   Geht doch! – Selbermachen rund um Haus, Hof und Garten
   Stylesheet für alle Seiten
   ======================================================== */

:root {
  --green: #4a6741;      /* gedämpftes Naturgrün */
  --green-dark: #2d3f25;
  --green-light: #e8ede4;
  --warm: #d4a574;       /* warmes Holzbraun für Akzente */
  --warm-dark: #a87a48;
  --cream: #faf6ef;      /* heller Hintergrund */
  --text: #2a2a26;
  --text-soft: #5a5a52;
  --border: #d8d4cb;
  --white: #ffffff;
  --bg: #fbf9f4;
}

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ---------- Navigation ---------- */
nav {
  background: var(--green-dark);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-logo {
  font-family: Georgia, serif;
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--warm); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--warm); }

/* ---------- Hero / Begrüßung ---------- */
.hero {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--cream) 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero h1 {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero h1 .accent { color: var(--warm-dark); }
.hero p {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ---------- Two-Column Bereiche ---------- */
.bereiche {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .bereiche { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
.bereich {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bereich:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.bereich-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}
.bereich h2 {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.bereich p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.bereich-themen {
  list-style: none;
  margin-bottom: 1.5rem;
}
.bereich-themen li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.bereich-themen li:last-child { border: none; }
.bereich-themen a {
  color: var(--text);
  text-decoration: none;
}
.bereich-themen a:hover { color: var(--warm-dark); }

.btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn:hover { background: var(--green-dark); }
.btn-warm { background: var(--warm-dark); }
.btn-warm:hover { background: #8a5f30; }

/* ---------- Artikel-Container ---------- */
.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--green);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

.article-container h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}
.article-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.article-container h2 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 2.5rem 0 1rem;
}
.article-container h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 1.8rem 0 0.6rem;
  font-weight: 600;
}
.article-container p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.article-container ul, .article-container ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text);
}
.article-container li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ---------- Produkt-Empfehlungs-Box ---------- */
.produkt-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--warm);
  border-radius: 8px;
  padding: 1.3rem 1.5rem;
  margin: 1.8rem 0;
}
.produkt-box .label {
  display: inline-block;
  background: var(--warm-dark);
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.produkt-box h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.produkt-box p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: var(--text-soft);
}
.produkt-box a {
  display: inline-block;
  color: var(--warm-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.produkt-box a:hover { text-decoration: underline; }
.werbehinweis {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ---------- Persönliche Notiz / Zitat-Box ---------- */
.notiz {
  background: var(--green-light);
  border-radius: 8px;
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
  position: relative;
}
.notiz::before {
  content: "✏️";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--cream);
  padding: 0 8px;
  font-size: 1.2rem;
  font-style: normal;
}

/* ---------- Über-mich-Box auf Startseite ---------- */
.about-teaser {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 600px) {
  .about-teaser { grid-template-columns: 1fr; text-align: center; }
}
.about-avatar {
  width: 100px;
  height: 100px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.about-teaser h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.about-teaser p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.about-teaser a {
  color: var(--warm-dark);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem;
  margin-top: 4rem;
}
footer a {
  color: rgba(255,255,255,0.85);
  margin: 0 0.5rem;
  text-decoration: none;
}
footer a:hover { color: var(--warm); }

/* ---------- Tags / Bereich-Badge auf Artikel-Seiten ---------- */
.tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-right: 0.4rem;
}
.tag.werkstatt {
  background: rgba(212,165,116,0.2);
  color: var(--warm-dark);
}
