/* Andy Gysau | IT | Büro | Service — Legal-Stylesheet (Impressum & AGB) */

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

:root {
  --bg: #0d0f14; --bg2: #13161e; --card: #181c26;
  --border: rgba(255,255,255,0.07); --border2: rgba(255,255,255,0.12);
  --text: #f0f2f7; --muted: #8a8fa8;
  --accent: #3d8bff; --accent2: #5fa3ff;
}

html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 6vw;
  background: rgba(13,15,20,0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.1rem;
  letter-spacing: -0.01em; color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--muted); text-decoration: none;
  border: 1px solid var(--border2); border-radius: 6px; padding: 0.4rem 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.nav-back:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

.page-wrap { max-width: 780px; margin: 0 auto; padding: 8rem 6vw 5rem; }

.page-label {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.8rem;
}

h1 {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.5rem;
}

.divider { width: 40px; height: 3px; background: var(--accent); border-radius: 2px; margin: 1.5rem 0 2.5rem; }

.section {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 14px; padding: 2rem 2.5rem; margin-bottom: 1.5rem;
}

.section h2 {
  font-family: "Syne", sans-serif; font-weight: 700;
  color: var(--accent2); margin-bottom: 1rem; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.82rem;
}

.section p, .section address {
  font-size: 0.95rem; color: var(--muted); font-style: normal;
  line-height: 1.8; font-weight: 300;
}

.section a { color: var(--accent2); text-decoration: none; }
.section a:hover { text-decoration: underline; }
.section p + p { margin-top: 0.6rem; }
.highlight { color: var(--text); font-weight: 500; }
.todo { color: #f4a944; font-weight: 500; }

/* AGB-spezifisch */
.section h2 .num {
  background: rgba(61,139,255,0.12); color: var(--accent);
  border-radius: 50%; width: 22px; height: 22px; font-size: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.section ul {
  list-style: none; margin-top: 0.8rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.section ul li {
  font-size: 0.93rem; color: var(--muted); font-weight: 300;
  display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.6;
}
.section ul li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); margin-top: 0.55em; flex-shrink: 0;
}

footer {
  padding: 2rem 6vw; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; gap: 1rem; margin-top: 3rem;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }

@media (max-width: 600px) {
  .page-wrap { padding: 7rem 5vw 3rem; }
  .section { padding: 1.5rem; }
  nav { padding: 1rem 5vw; }
}
