/* =====================================================================
   Legal-Seiten (Impressum / Datenschutz) – EZM Verwalter Pro
   Eigenständiges, schlankes Stylesheet im Marken-Design.
   ===================================================================== */
:root {
  --color-primary: #0d3b14;
  --color-accent: #03ab13;
  --color-accent-dark: #038f10;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6f4;
  --color-text: #2e2e2e;
  --color-text-muted: #8a8a8a;
  --color-border: #e4e7e4;
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 10px;
  --container-max: 900px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 38px; width: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  padding: 0.65rem 1.2rem; border-radius: var(--radius);
  border: 2px solid var(--color-border);
  color: var(--color-primary); background: transparent;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn--secondary:hover { border-color: var(--color-accent); color: var(--color-accent); text-decoration: none; }

/* Legal-Inhalt */
.legal {
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}
.legal__back { margin-bottom: 1.5rem; font-size: 0.95rem; }
.legal h1 {
  color: var(--color-primary);
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.legal h2 {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.25rem; }
.legal li { margin-bottom: 0.4rem; padding-left: 0.25rem; list-style: disc; }
.legal strong { color: var(--color-primary); }

/* Footer */
.footer {
  background: #08280d;
  color: rgba(255,255,255,0.75);
  padding-block: 2rem;
  font-size: 0.9rem;
}
.footer__inner {
  max-width: 1180px;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: #fff; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; }

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }
