/* =====================================================================
   Döner & Pizza Land – Stylesheet für Impressum und Datenschutz
   ===================================================================== */

@font-face { font-family: 'Lato'; src: url('../fonts/lato-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('../fonts/lato-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

:root {
  --bg: #fff7ed;
  --surface: #fff;
  --text: #1f1f1f;
  --muted: #6b625a;
  --line: rgba(31,31,31,.12);
  --red: #df2e1b;
  --dark: #171717;
  --shadow: 0 18px 45px rgba(42,28,16,.10);
}

body {
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255,247,237,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
}
.nav-logo::before {
  content: '🥙';
  margin-right: 8px;
}

.nav-back {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}
.nav-back:hover { color: var(--red); }

main {
  max-width: 820px;
  margin: 36px auto 70px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.06em;
  margin-bottom: 12px;
}

.divider {
  width: 64px;
  height: 4px;
  background: var(--red);
  border-radius: 99px;
  margin: 0 0 28px;
}

h2 {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 30px 0 8px;
}

p {
  color: #333;
  margin-bottom: 8px;
}

a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

footer {
  background: var(--dark);
  color: #9f9f9f;
  text-align: center;
  padding: 28px 16px;
  font-size: .88rem;
}
footer span { color: #fff; font-weight: 900; }
footer a {
  color: #d8d8d8;
  text-decoration: none;
  margin: 0 10px;
}
footer a:hover { color: #fff; }

.footer-links { margin-top: 8px; }

@media (max-width: 620px) {
  nav { padding: 15px 16px; }
  .nav-back { font-size: .82rem; }
  main { margin: 20px 12px 54px; border-radius: 22px; }
}
