@import url('fonts/fonts.css');

:root {
  --creme: #eee7da;
  --beige: #f1ece6;
  --fast-weiss: #fffef3;
  --anthrazit: #444443;
  --pfirsich: #fad7cb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--anthrazit);
  background: var(--fast-weiss);
  line-height: 1.7;
  font-size: 16px;
}

img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: var(--anthrazit);
}

.legal-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.back-link {
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  letter-spacing: 0.02em;
}

.back-link:hover {
  opacity: 1;
}

.legal-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.legal-main h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 32px 0 16px;
}

.legal-main h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 40px 0 12px;
}

.legal-main p {
  margin-bottom: 16px;
}

.legal-main ul {
  margin: 0 0 16px 20px;
}

.legal-main li {
  margin-bottom: 6px;
}

.legal-lead {
  font-size: 1.05rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.legal-meta {
  font-style: italic;
  opacity: 0.65;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-placeholder {
  display: block;
  font-family: 'Montserrat', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--anthrazit);
  background: var(--creme);
  padding: 6px 10px;
  border-radius: 2px;
  margin: 8px 0;
  opacity: 0.7;
}

/* Footer (identisch zu index.html) */
.site-footer {
  background: var(--anthrazit);
  color: var(--fast-weiss);
  padding: 40px 24px;
}
.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.site-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer a {
  color: var(--fast-weiss);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.site-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}
.site-footer-sep {
  opacity: 0.5;
}
@media (max-width: 600px) {
  .site-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
