/*
Theme Name: Axer
Description: Propagační web – co znamená termín antivaxer a jak bylo slovo zneužito.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: axer
*/

/* ── PALETTE ── */
:root {
  --ink:     #1a1a1a;
  --sub:     #555555;
  --muted:   #999999;
  --border:  #e0e0e0;
  --surface: #fafafa;
  --white:   #f5f5f5;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ── NAV ── */
.site-nav {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-nav .navbar-brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.site-nav .navbar-brand:hover { color: var(--ink); }
.site-nav .nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sub) !important;
  padding: 0.5rem 0.9rem !important;
  text-decoration: none;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--ink) !important;
}
.site-nav .navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.35rem 0.6rem;
}
.site-nav .navbar-toggler:focus { box-shadow: none; }

/* ── HERO ── */
.hero {
  padding: 8rem 0 7rem;
  border-bottom: 1px solid var(--border);
}
.hero .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero .lead {
  font-size: 1.05rem;
  color: var(--sub);
  max-width: 600px;
  line-height: 1.7;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ── OVERVIEW CARDS (front page) ── */
.overview-card {
  border-top: 2px solid var(--ink);
  padding: 1.25rem 0 0;
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.overview-card:hover { color: var(--ink); text-decoration: none; }
.overview-card .oc-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.overview-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.overview-card p {
  font-size: 0.85rem;
  color: var(--sub);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.overview-card .oc-arrow {
  display: inline-block;
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 0.35rem 0.85rem;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.overview-card:hover .oc-arrow {
  background: var(--white);
  color: var(--ink);
}

/* ── SECTION META ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ── FEATURE CARDS ── */
.feature-card {
  border-top: 2px solid var(--ink);
  padding: 1.5rem 0 0;
  height: auto;
}
.feature-card .icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: block;
}
.feature-card h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.65;
}

/* ── SUMMARY SIDE STACK ── */
.summary-side {
  align-self: flex-start;
}
.summary-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.summary-side-stack .feature-card {
  height: auto;
}

/* ── TABLES ── */
.data-table {
  overflow: hidden;
  border: 1px solid var(--border);
  width: 100%;
}
.data-table thead th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.25rem;
  border: none;
}
.data-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  vertical-align: top;
  border-bottom: 1px solid var(--surface);
  line-height: 1.65;
  color: var(--sub);
}
.data-table tbody td strong { color: var(--ink); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: #fafafa; }

/* ── BADGES ── */
.badge-tag,
.badge-no {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--sub);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 2px;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

/* ── TEST SECTION ── */
.test-section {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  margin: 2rem 0;
}
.test-section .question {
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--ink);
  padding-left: 1.1rem;
  line-height: 1.65;
}
.answer-card {
  padding: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.65;
  background: var(--white);
  border: 1px solid var(--border);
  border-top-width: 3px;
  margin-bottom: 1rem;
}
.answer-card.anti { border-top-color: #b91c1c; }
.answer-card.ok   { border-top-color: #15803d; }
.answer-card .tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.answer-card.anti .tag { color: #b91c1c; }
.answer-card.ok   .tag { color: #15803d; }
.answer-card blockquote {
  margin: 0.35rem 0 0.75rem;
  font-style: italic;
  color: var(--sub);
}
.answer-card .verdict {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
}

/* ── SUMMARY BOX ── */
.summary-box {
  background: var(--ink);
  color: var(--white);
  padding: 4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.summary-box .headline {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.summary-box .sub {
  color: #888;
  font-size: 0.9rem;
  margin-top: 0.85rem;
  line-height: 1.7;
  max-width: 620px;
}
.highlight-word {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── CONTINUE NAV ── */
.continue-nav-wrap {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}
.continue-nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.continue-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.continue-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.continue-link:hover {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--ink);
}
.continue-link.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ── SITE FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── DIVIDER ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── INTRO BANNER ── */
.section-intro-banner {
  border-left: 3px solid var(--ink);
  padding: 1.25rem 1.5rem;
  background: var(--surface);
}

/* ── STEP NUMBER ── */
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e8e8e8;
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

/* ── BEFORE / AFTER ── */
.before-after {
  overflow: hidden;
  border: 1px solid var(--border);
}
.before-after .ba-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--surface);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--sub);
}
.before-after .ba-item:last-child { border-bottom: none; }
.ba-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-top: 0.2rem;
  min-width: 2.75rem;
  color: var(--muted);
}

/* ── ABUSE TABLE ── */
.abuse-q-table { border: 1px solid var(--border); overflow: hidden; }
.abuse-q-table thead th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.1rem;
  border: none;
}
.abuse-q-table tbody td {
  padding: 1rem 1.1rem;
  font-size: 0.875rem;
  vertical-align: top;
  border-bottom: 1px solid var(--surface);
  line-height: 1.65;
  color: var(--sub);
}
.abuse-q-table tbody tr:last-child td { border-bottom: none; }
.abuse-q-table tbody tr:hover td { background: #fafafa; }
.badge-abuse {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--sub);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* ── ABUSE LIST ── */
.abuse-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.abuse-list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--surface);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--sub);
}
.abuse-list li:last-child { border-bottom: none; }
.abuse-list li strong { color: var(--ink); }
.abuse-list .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
  margin-top: 0.58rem;
  flex-shrink: 0;
}

/* ── CONSEQUENCE CARDS ── */
.consequence-card {
  border-top: 2px solid var(--ink);
  padding: 1.1rem 0 0;
  height: 100%;
}
.consequence-card h6 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.consequence-card p {
  font-size: 0.85rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.65;
}

/* ── NEUTRAL / CHECKLIST BOX ── */
.neutral-box,
.checklist-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
}

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  display: flex;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--sub);
  border-bottom: 1px solid var(--surface);
}
.checklist li:last-child { border-bottom: none; }
.checklist .check-icon {
  color: var(--ink);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
