/* ══════════════════════════════════════════════
   shared.css – Gemeinsame Stile (alle Seiten)
   ══════════════════════════════════════════════ */

/* ── Variablen ── */
:root {
  --green:       #4a6741;
  --green-light: #6a8f5f;
  --gold:        #b8933e;
  --cream:       #faf7f2;
  --dark:        #2c2c2c;
}

/* ── Basis ── */
* { box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ── Navbar ── */
#navbar {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green) !important;
  font-weight: 700;
}

.navbar-brand img {
  height: 44px;
  margin-right: 10px;
}

.nav-link {
  color: var(--green) !important;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link:hover { color: var(--gold) !important; }

/* ── Footer ── */
footer {
  position: relative;
  background: url('../images/footer/12-AnnemarieJaeger_Fam-Moesl_095-scaled.jpg') center 25% / cover no-repeat;
  color: #fff;
  font-size: 0.85rem;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 45, 25, 0.55);
}

footer .footer-inner {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
  width: 100%;
}

footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
footer a:hover { color: var(--gold); }
