/* =========================================================
   VILLA BLOOM & CO. – MASTER-TEMPLATE
   Alles zwischen Header und Footer ist der Seiten-Inhalt.
   Header, Menü, Footer und Farben bleiben auf jeder Seite gleich.
   ========================================================= */

:root {
  /* Markenfarben aus deinem Logo-Kit */
  --bg: #F1E9D5;
  --bg-warm: #ECE2CB;
  --bg-soft: #F6F0DF;
  --surface: #FBF7EC;
  --sage: #8B9A75;
  --sage-medium: #B4C29A;
  --sage-light: #D5DCC4;
  --beige: #DCC3A8;
  --pink: #E5BFC0;
  --text: #4A4536;
  --text-soft: #7A715E;
  --text-muted: #A89E87;
  --border: #C9BC9C;
  --border-soft: #DDD0B2;
  /* Schriften */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ===== Ankündigungsleiste (optional – darf gelöscht werden) ===== */
.announcement {
  background: var(--sage);
  color: #FBF7EC;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.announcement a {
  text-decoration: none;
  border-bottom: 0.5px solid rgba(251,247,236,0.5);
  padding-bottom: 2px;
  margin-left: 10px;
}

/* ===== Header / Logo ===== */
.site-header {
  text-align: center;
  padding: 56px 20px 32px;
  background: var(--bg);
}
.logo-wreath-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.logo-sprig { width: 90px; height: 26px; color: var(--sage); }
.logo-heart { width: 14px; height: 14px; color: var(--sage); display: inline-block; }
.logo-main {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.logo-script {
  font-family: var(--script);
  font-size: 36px;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
  margin-top: 4px;
}
.logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  max-width: 380px;
}
.logo-divider::before, .logo-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--sage);
  opacity: 0.45;
}
.logo-tagline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}

/* ===== Menü ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 36px;
  box-shadow: 0 2px 6px rgba(60, 50, 30, 0.04);
}
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 7px;
  transition: opacity 0.4s ease;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo-script { font-family: var(--script); font-size: 18px; color: var(--sage); }
.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  font-family: var(--sans);
  text-decoration: none;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--sage); color: var(--sage); }

/* ===== Seiten-Inhalt (Artikel) ===== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 32px 90px;
}
.article-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 16px;
}
.article-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 8px;
}
.article-title-script {
  font-family: var(--script);
  color: var(--sage);
  font-size: 38px;
  display: block;
  font-weight: 500;
}
.article-lead {
  font-style: italic;
  font-size: 21px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 22px 0 36px;
}
.article p { margin-bottom: 22px; line-height: 1.85; }
.article h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin: 44px 0 14px;
}
.article h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  margin: 32px 0 10px;
}
.article ul, .article ol { margin: 0 0 22px 26px; }
.article li { margin-bottom: 8px; line-height: 1.8; }
.article a {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-medium);
}
.article a:hover { color: var(--text); }
.article blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--sage);
  line-height: 1.55;
  border-left: 2px solid var(--sage-medium);
  padding: 6px 0 6px 28px;
  margin: 34px 0;
}
/* Bild im Artikel */
.article-figure { margin: 34px 0; }
.article-figure img { width: 100%; }
.article-figure figcaption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}
/* Bild-Platzhalter – ersetze ihn durch ein <img> (siehe unten) */
.img-placeholder {
  background: var(--surface);
  border: 0.5px dashed var(--border);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--text);
  color: var(--bg-soft);
  padding: 80px 40px 30px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 32px;
  color: white;
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 1.1;
}
.footer-brand-script { font-family: var(--script); font-size: 26px; color: var(--sage-medium); }
.footer-text {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.8;
  max-width: 320px;
  margin-top: 18px;
  font-style: italic;
}
.footer-heading {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-medium);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-family: var(--serif);
  color: var(--bg-soft);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}
.footer-links a:hover { opacity: 1; color: white; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-family: var(--sans);
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Mobil ===== */
@media (max-width: 768px) {
  .logo-main { font-size: 38px; }
  .logo-script { font-size: 26px; }
  .site-nav { padding: 12px 18px; gap: 14px; }
  .nav-logo { font-size: 18px; gap: 5px; }
  .nav-logo-script { font-size: 15px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 2px; }
  .article { padding: 48px 20px 64px; }
  .article-title { font-size: 33px; }
  .article-title-script { font-size: 29px; }
  .article-lead { font-size: 19px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Sprachumschalter ===== */
.lang-switch { display: flex; gap: 9px; align-items: center; }
.lang-switch a { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; color: var(--text-muted); font-weight: 500; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: all 0.4s ease; }
.lang-switch a:hover { color: var(--sage); }
.lang-switch a.active { color: var(--sage); border-bottom-color: var(--sage); }

/* ===== Scroll-Header ===== */
.site-nav { transition: padding 0.4s ease, box-shadow 0.4s ease, background 0.4s ease; }
.site-nav.scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(241, 233, 213, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 22px rgba(60, 50, 30, 0.1);
}
