/*  privacy.kolaczek.cz — shared stylesheet
    Small, dependency-free, dark/light aware. Served from S3 behind CloudFront. */

:root {
  --bg: #0d0e10;
  --surface: #16181c;
  --text: #e8e8ea;
  --muted: #9aa0a8;
  --accent: #d4a017;
  --border: #26282e;
  --link: #e0b84a;
  --maxw: 760px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 0 20px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 0 80px;
}

header.site {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 36px;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.2rem;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

h3 { font-size: 1.02rem; margin: 24px 0 8px; }

p, li { color: var(--text); }

.muted, .updated { color: var(--muted); font-size: 0.9rem; }

.updated { margin-top: 4px; }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 18px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.94rem;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th { color: var(--muted); font-weight: 600; }

code {
  background: #1e2026;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 0.88em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

ul { padding-left: 22px; }
li { margin: 6px 0; }

.pill {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  color: var(--accent);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 999px;
  padding: 2px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f7f9;
    --surface: #ffffff;
    --text: #1a1c20;
    --muted: #5c636e;
    --border: #e2e5ea;
    --link: #9a7010;
    --accent: #9a7010;
  }
  code { background: #eef0f3; }
}
