/* =============================================
   GÜNTER'S BAUMSTRIEZELEI — Gemeinsames Stylesheet
   ==============================================
   Diese Datei enthält alle Styles, die auf ALLEN Seiten verwendet werden.
   Änderungen hier wirken sich auf die gesamte Website aus!
   ============================================= */

/* ── Lokal eingebundene Schriften (DSGVO-konform) ──
   Statt von Google-Servern werden die Fonts direkt aus dem fonts/ Ordner geladen.
   So werden keine Besucherdaten an Google übermittelt. */

@font-face {
  font-family: 'Alfa Slab One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/alfa-slab-one-v21-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/lato-v25-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-v25-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-v25-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/lato-v25-latin-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Sacramento';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/sacramento-v17-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-600italic.woff2') format('woff2');
}

/* ── Farbvariablen & Design-Tokens ──
   Hier werden alle Farben, Schriften und Abstände zentral definiert.
   Um eine Farbe zu ändern, einfach den Wert hier anpassen —
   er wird automatisch überall auf der Seite aktualisiert. */
:root {
  /* Grüntöne (für Navigation, Buttons, Akzente) */
  --green-deep:    #758A48;
  --green-mid:     #8fa058;
  --green-light:   #eef2e4;

  /* Amber/Gold (für Buttons, Highlights, Akzente) */
  --amber:         #C58F33;
  --amber-dark:    #a07228;

  /* Cremetöne (Hintergründe für Unterseiten) */
  --cream:         #faf8f4;
  --cream-dark:    #f0e9de;

  /* Brauntöne (Rahmen, Datumskästen, dunkle Akzente) */
  --brown-pale:    #D2B48C;
  --brown-mid:     #916A4F;
  --brown-dark:    #6D3012;

  /* Text-Farben */
  --ink:           #6D3012;    /* Haupttext */
  --ink-soft:      #8a4a28;    /* Sekundärer Text */
  --white:         #fffdfb;

  /* Olive-Töne (für Karten, Banner auf der Startseite) */
  --olive:         #8aa14a;
  --olive-deep:    #758a48;
  --olive-soft:    #9bb35c;

  /* Holz-Töne (dunkler Hintergrund auf der Startseite) */
  --wood-dark:     #806b5f;
  --wood-mid:      #6b5547;
  --wood-warm:     #6f5c4f;

  /* Helle Textfarben (für dunkle Hintergründe) */
  --cream-text:    #f6f1e3;
  --paper:         #faf6ec;

  /* Schriften —
     font-heading: Alfa Slab One für alle Überschriften (mit grünem Schatten)
     font-display: Playfair Display für elegantere Elemente
     font-body: Lato für den Fließtext */
  --font-heading:  'Alfa Slab One', 'Playfair Display', Georgia, serif;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', Helvetica, sans-serif;

  /* Abgerundete Ecken */
  --radius:        6px;      /* Standard */
  --radius-lg:     12px;     /* Größer (Karten, Bilder) */

  /* Schatten */
  --shadow-sm:     0 2px 8px rgba(109,48,18,0.10);   /* Leicht */
  --shadow-md:     0 6px 24px rgba(109,48,18,0.14);   /* Mittel */
}

/* ── Grundeinstellungen (Reset) ──
   Setzt Abstände zurück und definiert Basis-Styles für die ganze Seite */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Standard-Body: heller Creme-Hintergrund (für alle Unterseiten) */
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
}

/* Startseite: dunkler Holzhintergrund —
   Diese Klasse wird nur auf index.html gesetzt (<body class="page-home">) */
body.page-home {
  background: var(--wood-dark);
  color: var(--cream-text);
}

img { display: block; max-width: 100%; }
a { color: var(--green-mid); text-decoration: none; }
a:hover { color: var(--amber-dark); }

/* ── Holz-Textur-Hintergrund ──
   Wird auf der Startseite für große Bereiche verwendet.
   Das Bild wird mit "multiply" über die Grundfarbe gelegt. */
.wood-surface {
  background-image: url("uploads/Holzhintergrund.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
}
/* Dunkler Rand-Effekt über der Holztextur */
.wood-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(rgba(40,22,10,0.35), rgba(40,22,10,0.35));
  pointer-events: none;
}
.wood-surface > * { position: relative; z-index: 1; }

/* ── Grüner Trennbalken ──
   Wird zwischen Sektionen auf der Startseite verwendet */
.green-band {
  height: 26px;
  background: var(--olive);
  border-top: 2px solid #5e7434;
  border-bottom: 2px solid #5e7434;
}
.green-band--thin { height: 14px; }

/* ===========================================================
   NAVIGATION (auf allen Seiten sichtbar)
   =========================================================== */
.site-nav {
  position: sticky;          /* Bleibt beim Scrollen oben */
  top: 0;
  z-index: 100;              /* Immer über dem Inhalt */
  background: var(--olive-deep);
  border-bottom: 3px solid var(--olive);
  box-shadow: 0 2px 12px rgba(30,50,15,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;              /* Feste Höhe der Navigation */
  gap: 2rem;
}

/* Logo in der Navigation */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-main {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
.nav-logo-sub {
  font-family: 'Sacramento', cursive;   /* Handschrift-Stil */
  font-size: 1.1rem;
  color: #f0e6c8;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: -2px;
}

/* Navigationslinks */
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5eede;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover,
.nav-links a.active {        /* .active = aktuelle Seite hervorheben */
  background: var(--olive);
  color: #fff;
}

/* "Kontakt & Buchen" Button in der Navigation */
.nav-book-btn {
  background: #f0e6c8 !important;
  color: var(--olive-deep) !important;
  font-weight: 700 !important;
}
.nav-book-btn:hover {
  background: #fff !important;
  color: var(--wood-dark) !important;
}

/* ── Hamburger-Menü (für Mobile) ──
   Wird nur auf kleinen Bildschirmen angezeigt (unter 768px) */
.nav-toggle {
  display: none;             /* Standardmäßig versteckt */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===========================================================
   HERO-BANNER (Startseite, großer Bereich oben)
   =========================================================== */
.banner-hero {
  padding: 0;
  overflow: hidden;
}
/* Titelzeile im Banner */
.banner-title-bar {
  padding: 3.2rem 2rem 3rem;
  text-align: center;
}
.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 6rem);  /* Responsive Größe */
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: 0.02em;
  /* Grüner Schatten + schwarzer Tiefenschatten */
  text-shadow: 4px 4px 0 var(--olive), 5px 5px 0 rgba(0,0,0,0.3);
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.banner-title em {
  font-style: normal;
  color: var(--paper);
}
/* Bereich mit Kontaktkarte + Foto nebeneinander */
.banner-stage {
  position: relative;
  padding: 4.5rem 2rem;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.banner-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 3rem;
  align-items: center;
}

/* ===========================================================
   OLIVGRÜNE KONTAKTKARTE (Startseite Hero-Bereich)
   =========================================================== */
.olive-card {
  background: var(--olive);
  border-radius: 28px;
  padding: 2.6rem 2.4rem 2.4rem;
  color: var(--paper);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(255,255,255,0.08);
  max-width: 480px;
  position: relative;
}
/* Handschrift-Text in der Karte */
.olive-card .script {
  font-family: 'Sacramento', cursive;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 0.6rem;
}
/* Großbuchstaben-Text in der Karte */
.olive-card .caps {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
/* Kontakt-Zeilen (Icon + Text) */
.olive-card .contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--paper);
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}
/* Runde Icons in der Kontaktkarte */
.olive-card .contact-row .icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.olive-card .contact-row a {
  color: var(--paper);
  text-decoration: none;
}
.olive-card .contact-row a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Buttons unter der Kontaktkarte */
.olive-card-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* ── Pill-Buttons (abgerundete Buttons) ──
   Verwendet in der olivgrünen Kontaktkarte */
.pill-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;        /* Vollständig abgerundet */
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--paper);
  color: var(--paper);
  transition: all .2s;
}
.pill-btn:hover {
  background: var(--paper);
  color: var(--olive-deep);
}
/* Ausgefüllte Variante */
.pill-btn.solid {
  background: var(--paper);
  color: var(--olive-deep);
}
.pill-btn.solid:hover {
  background: #fff;
  color: var(--wood-dark);
}

/* ── Baumstriezel-Dekoration ──
   Dekorative Bilder am Rand des Hero-Bereichs */
.striezel-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}
.striezel-deco.left {
  left: -56px;
  bottom: 36%;
  transform: rotate(-22deg);
  width: 130px;
}
.striezel-deco.right {
  right: 36%;
  bottom: -30px;
  transform: rotate(8deg);
  width: 150px;
}

/* ── Hero-Foto (Baumstriezel-Bild auf der Startseite) ──
   Standardmäßig ein Platzhalter, mit .has-image wird das echte Bild angezeigt */
.hero-photo {
  position: relative;
  height: auto;
  min-height: 460px;
  border-radius: 18px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.04) 10px,
    rgba(255,255,255,0.07) 10px,
    rgba(255,255,255,0.07) 20px
  );
  border: 2px dashed rgba(246,241,227,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,241,227,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Lato', monospace;
}
.hero-photo span {
  background: rgba(0,0,0,0.4);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-align: center;
}
/* Wenn ein echtes Bild vorhanden ist */
.hero-photo.has-image {
  background: none;
  border: none;
  overflow: visible;
}
.hero-photo.has-image img {
  width: 130%;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
  margin-left: 080%;
  transform: scaleX(1.15);
  transform-origin: right center;
}

/* ===========================================================
   USP-LEISTE (Startseite: 20+ Jahre, 100% Handarbeit, etc.)
   =========================================================== */
.usp-strip {
  padding: 2.8rem 2rem;
}
.usp-strip-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* 4 Spalten */
  gap: 1.5rem;
}
.usp-tile {
  text-align: center;
  color: var(--paper);
}
.usp-tile .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--olive);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.usp-tile .lbl {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--paper);
}
.usp-tile .sub {
  font-size: 0.83rem;
  color: rgba(246,241,227,0.7);
  margin-top: 0.3rem;
}

/* ===========================================================
   ÜBER-UNS-BEREICH (Startseite: Text + Foto nebeneinander)
   =========================================================== */
.about-block {
  padding: 5rem 2rem;
}
.about-grid-2 {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;    /* Zwei gleiche Spalten */
  gap: 3.5rem;
  align-items: center;
}
/* Handschrift-Überschrift */
.about-grid-2 .heading-script {
  font-family: 'Sacramento', cursive;
  font-size: 2.4rem;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 0.4rem;
}
/* Hauptüberschrift mit grünem Schatten */
.about-grid-2 h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: var(--paper);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
  text-shadow: 3px 3px 0 var(--olive);
}
.about-grid-2 p {
  color: rgba(246,241,227,0.85);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
/* Foto-Platzhalter im Über-uns-Bereich */
.about-photo {
  height: 380px;
  border-radius: 18px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.04) 10px,
    rgba(255,255,255,0.07) 10px,
    rgba(255,255,255,0.07) 20px
  );
  border: 2px dashed rgba(246,241,227,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,241,227,0.6);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-photo span {
  background: rgba(0,0,0,0.4);
  padding: 0.6rem 1rem;
  border-radius: 6px;
}

/* ===========================================================
   MÄRKTE-BEREICH (Startseite: Markt-Kacheln im Raster)
   =========================================================== */
.markets-block { padding: 5rem 2rem; }
/* Kopfbereich mit Titel + Beschreibung */
.markets-block-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.markets-block-head .heading-script {
  font-family: 'Sacramento', cursive;
  font-size: 2.4rem;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.markets-block-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--olive);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.markets-block-head p {
  color: rgba(246,241,227,0.85);
  line-height: 1.8;
  font-size: 1rem;
}
/* Raster mit Markt-Kacheln (3 Spalten) */
.markets-2 {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Einzelne Markt-Kachel */
.market-tile {
  background: var(--olive);
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  color: var(--paper);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.market-tile .season {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,227,0.8);
  margin-bottom: 0.5rem;
}
.market-tile .name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.market-tile .desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(246,241,227,0.85);
}
.markets-cta { text-align: center; margin-top: 2.5rem; }

/* ===========================================================
   BUCHUNGS-BEREICH (Startseite: "Jetzt buchen" Karte)
   =========================================================== */
.booking-block {
  padding: 5rem 2rem;
  text-align: center;
}
.booking-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--olive);
  border-radius: 28px;
  padding: 3rem 2rem;
  color: var(--paper);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  position: relative;
}
.booking-card .heading-script {
  font-family: 'Sacramento', cursive;
  font-size: 2.4rem;
  color: var(--paper);
  line-height: 1;
}
.booking-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--paper);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0.3rem 0 1.2rem;
}
.booking-card p {
  color: rgba(246,241,227,0.9);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 1.6rem;
}

/* ===========================================================
   SEITENINHALT (Wrapper für den Hauptbereich)
   =========================================================== */
.page-content {
  min-height: calc(100vh - 72px);    /* Mindestens so hoch wie der Bildschirm */
}

/* ===========================================================
   SEKTIONS-HILFSKLASSEN (für Unterseiten)
   Verschiedene Hintergrundfarben für Abschnitte
   =========================================================== */
.section {
  padding: 5rem 2rem;
}
.section--cream { background: var(--cream); }         /* Helles Creme */
.section--white { background: var(--white); }         /* Weiß */
.section--cream-dark { background: var(--cream-dark); } /* Dunkleres Creme */
.section--green {                                      /* Grüner Hintergrund */
  background: var(--green-deep);
  color: var(--white);
}
.section--brown {
  background: var(--brown-pale);
}

/* Container begrenzt die maximale Breite des Inhalts */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Kleine Beschriftung über Überschriften ("HANDGEFERTIGT", "UNSERE GESCHICHTE") */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.6rem;
}
/* Im Hero-Bereich (grüner Hintergrund) soll das Label weiß sein */
.page-hero .section-label {
  color: var(--white);
}

/* Sektions-Überschrift mit grünem Schatten */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.2rem;
  text-shadow: 3px 3px 0 var(--olive);     /* Grüner Schatten-Effekt */
}
/* Helle Variante (auf grünem/dunklem Hintergrund) */
.section-title--light { color: var(--white); text-shadow: 3px 3px 0 var(--olive); }

/* Einleitungstext unter einer Überschrift */
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.8;
}
.section-lead--light { color: #f0e4cc; }

/* ── Trennlinie mit Raute ──
   Dekoratives Element unter Überschriften */
.divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.divider-line { flex: 1; height: 1px; background: var(--brown-mid); }
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--amber);
  transform: rotate(45deg);    /* Raute-Form */
}

/* ── Holzbalken-Trennleiste ──
   Wird zwischen Hero und Inhalt auf Unterseiten verwendet */
.wood-bar {
  height: 18px;
  background: var(--brown-pale);
  border-top: 2px solid var(--brown-mid);
  border-bottom: 2px solid var(--brown-mid);
  width: 100%;
}
.wood-bar--thin {
  height: 8px;
  background: var(--brown-mid);
  width: 100%;
}

/* ── Bild-Platzhalter ──
   Wird überall dort verwendet, wo noch kein echtes Foto eingefügt wurde.
   Zeigt ein Streifenmuster und einen Beschriftungstext. */
.img-placeholder {
  background-color: var(--cream-dark);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(194,166,130,0.5) 8px,
    rgba(194,166,130,0.5) 9px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.img-placeholder-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  text-align: center;
  padding: 1rem;
  background: rgba(250,248,244,0.85);
  border-radius: 4px;
}

/* ===========================================================
   BUTTONS (auf allen Seiten verwendet)
   =========================================================== */

/* Basis-Button */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
}

/* Primär-Button (Gold/Amber, ausgefüllt) */
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Umriss-Button (hell, für dunkle Hintergründe) */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(240,228,210,0.5);
}
.btn-outline:hover {
  background: rgba(255,253,251,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Umriss-Button (dunkel, für helle Hintergründe) */
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--green-mid);
}
.btn-outline-dark:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

/* ===========================================================
   FOOTER (auf allen Seiten sichtbar)
   =========================================================== */
.site-footer {
  background: #1a0f08;          /* Sehr dunkelbraun */
  color: #c9b88f;
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* Footer-Raster: Logo/Text | Navigation | Kontakt */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
/* Logo im Footer */
.footer-logo-main {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--olive);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-logo-sub {
  font-family: 'Sacramento', cursive;
  font-size: 1.4rem;
  color: #f0e6c8;
  text-transform: none;
  letter-spacing: 0;
}
.footer-tagline {
  font-family: 'Sacramento', cursive;
  font-size: 1.4rem;
  color: var(--olive);
  margin-top: 0.75rem;
}
.footer-desc {
  font-size: 0.87rem;
  line-height: 1.7;
  color: #b89070;
  margin-top: 1rem;
}
/* Spalten-Überschriften im Footer */
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}
/* Navigationslinks im Footer */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
  font-size: 0.87rem;
  color: #c8a070;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--olive); }
/* Kontakt-Infos im Footer */
.footer-contact-item {
  font-size: 0.87rem;
  color: #c8a070;
  margin-bottom: 0.4rem;
}
.footer-contact-item a {
  color: #c8a070;
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--olive); }
/* Untere Zeile im Footer (Copyright + Impressum) */
.footer-bottom {
  border-top: 1px solid rgba(255,253,251,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #c8a882;
}
.footer-bottom a { color: #d4b890; }
.footer-bottom a:hover { color: var(--olive); }

/* ===========================================================
   RESPONSIVE DESIGN — Anpassungen für verschiedene Bildschirmgrößen
   =========================================================== */

/* Tablets und kleinere Desktops (unter 880px) */
@media (max-width: 880px) {
  .banner-grid { grid-template-columns: 1fr; gap: 2rem; justify-items: center; }
  .olive-card { margin: 0 auto; }
  .hero-photo { height: 320px; }
  .usp-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .markets-2 { grid-template-columns: 1fr; }
  .striezel-deco.left { left: -40px; width: 90px; }
  .striezel-deco.right { display: none; }
}

/* Mobile Geräte (unter 768px) — Hamburger-Menü wird aktiv */
@media (max-width: 768px) {
  .nav-links { display: none; }    /* Links verstecken */
  /* Wenn .open gesetzt wird (per JavaScript), erscheint das Menü als Dropdown */
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--olive-deep); padding: 1rem; gap: 0.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
  .nav-toggle { display: block; }  /* Hamburger-Icon anzeigen */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .usp-strip-grid { grid-template-columns: 1fr 1fr; }

  /* Banner-Titel auf Mobile kleiner und zentriert */
  .banner-title {
    font-size: clamp(1.8rem, 9vw, 3.2rem);
    text-align: center;
    word-break: break-word;
    padding: 0 0.5rem;
  }
  .banner-title-bar {
    padding: 2rem 1rem 2rem;
  }

  /* Bild auf Mobile: am rechten Rand, aber nicht rausragend */
  .hero-photo.has-image img {
    width: 100%;
    margin-left: 0;
    margin-right: -2rem;
    transform: scaleX(1.1);
    transform-origin: right center;
  }
  .hero-photo.has-image {
    overflow: hidden;
  }
  .banner-stage {
    padding: 2rem 0 2rem 1rem;
    overflow: hidden;
  }
}

/* Sehr kleine Smartphones (unter 480px) */
@media (max-width: 480px) {
  .usp-strip-grid { grid-template-columns: 1fr; }

  /* Titel noch kleiner auf sehr kleinen Bildschirmen */
  .banner-title {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
    letter-spacing: 0;
    text-shadow: 3px 3px 0 var(--olive), 4px 4px 0 rgba(0,0,0,0.3);
  }
}
