/* ==========================================================================
   Marco Groß — Impressum style.css v1.0
   2026-05-10: v1.0 — Initiale Version
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --ws-primary:      #7FAEBD;
  --ws-secondary:    #FC8D29;
  --ws-text:         #1F2A30;
  --ws-text-muted:   #5C7078;
  --ws-bg:           #F7F5F0;
  --ws-border:       rgba(31,42,48,0.12);
  --ws-font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --ws-font-display: Georgia, 'Times New Roman', serif;
  --ws-radius:       8px;
  --ws-max-w:        680px;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ws-font-body);
  color: var(--ws-text);
  background: var(--ws-bg);
  line-height: 1.65;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* ── Navigation ── */
.ws-imp-nav {
  position: sticky;
  top: 0;
  background: var(--ws-bg);
  border-bottom: 1px solid var(--ws-border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.ws-imp-nav__logo {
  height: 32px;
  width: auto;
  display: block;
}

.ws-imp-nav__back {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--ws-text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.ws-imp-nav__back:hover { color: var(--ws-text); }
.ws-imp-nav__back::before { content: '←'; font-size: 15px; }

/* ── Main ── */
.ws-imp-main {
  flex: 1;
  max-width: var(--ws-max-w);
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.ws-imp-main h1 {
  font-family: var(--ws-font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ws-text);
  margin-bottom: 8px;
}

.ws-imp-main > p.ws-imp-sub {
  font-size: 14px;
  color: var(--ws-text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ws-border);
}

/* ── Sections ── */
.ws-imp-section {
  margin-bottom: 40px;
}

.ws-imp-section h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ws-primary);
  margin-bottom: 10px;
}

.ws-imp-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ws-text);
}

.ws-imp-section p + p { margin-top: 6px; }

.ws-imp-section a {
  color: var(--ws-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.ws-imp-section a:hover { color: var(--ws-secondary); }

/* ── Footer ── */
.ws-imp-footer {
  border-top: 1px solid var(--ws-border);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--ws-text-muted);
}

.ws-imp-footer a {
  color: var(--ws-text-muted);
  text-decoration: none;
  font-weight: 500;
}

.ws-imp-footer a:hover { color: var(--ws-text); }

@media (max-width: 480px) {
  .ws-imp-main { padding: 36px 20px 64px; }
}
