/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #064e3b;
  --bg-mid:     #065f46;
  --bg-dark:    #14532d;
  --page-bg:    #071410;
  --footer-bg:  #041208;
  --accent:     #34d399;
  --accent-lt:  #4ade80;
  --text-muted: #a7f3d0;
  --footer-link:#4b5563;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font);
  background: var(--page-bg);
  color: #e0e0e0;
  min-height: 100vh;
}

/* ── Navigation ── */
nav.site-nav {
  background: rgba(6, 78, 59, 0.97);
  backdrop-filter: blur(12px);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav.site-nav a.logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* ── Footer ── */
footer.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(52, 211, 153, 0.07);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer.site-footer .footer-copy {
  color: #374151;
  font-size: 13px;
}

footer.site-footer .footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

footer.site-footer .footer-links a {
  color: var(--footer-link);
  font-size: 13px;
  text-decoration: none;
  background: none;
  border: none;
}

footer.site-footer .footer-links a:hover {
  color: #9ca3af;
}

/* ── Rechtliche Seiten (impressum, datenschutz, agb) ── */
.legal-page {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px 80px;
}

.legal-page h1 {
  color: #f0fdf4;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.legal-page .legal-body {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(52, 211, 153, 0.1);
  border-radius: 14px;
  padding: 32px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  nav.site-nav  { padding: 0 20px; }
  footer.site-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .legal-page   { margin: 32px auto; }
  .legal-page .legal-body { padding: 20px; }
}
