/* ═══════════════════════════════════════════════════════════════
   base.css — RESET, ZÁKLADNÉ ŠTÝLY, TYPOGRAFIA, LAYOUT UTILITY
═══════════════════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family);
  color: var(--clr-text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
ul       { list-style: none; }
a        { color: inherit; }

.wa-editor-content ul,
.wa-editor-content ol {
  margin: 0 0 12px;
  padding-left: 1.5em;
  list-style-position: outside;
}
.wa-editor-content ul { list-style-type: disc; }
.wa-editor-content ol { list-style-type: decimal; }
.wa-editor-content ul ul { list-style-type: circle; }
.wa-editor-content ul ul ul { list-style-type: square; }
.wa-editor-content li > ul,
.wa-editor-content li > ol {
  margin-top: 6px;
  margin-bottom: 0;
}

/* ── Typografia ───────────────────────────────────────────── */
/* TODO: Veľkosti nadpisov môžeš meniť tu */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--clr-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--space-sm); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem);    margin-bottom: var(--space-sm); }
h3 { font-size: 1.15rem;  margin-bottom: 8px; }
h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
p { margin-bottom: 12px; }

/* ── Layout utility triedy ────────────────────────────────── */
/* TODO: --container-max definuj v variables.css */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Základná sekcia */
.section       { padding-block: var(--space-xl); }
.section.bg-alt { background: var(--bg-alt); }

/* Hlavička sekcie (nadpis + podnapis) */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-title { margin-bottom: 8px; }
.section-sub {
  color: var(--clr-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
}

/* Grid — základ pre všetky sekcie */
.grid { display: grid; gap: var(--space-md); }

/* ── Page Hero — spoločný pre všetky podstránky ───────────── */
.page-hero {
  background:    linear-gradient(135deg, var(--wp-hero-grad-start, #0a3b66) 0%, var(--wp-hero-grad-end, #0b5ed7) 100%);
  padding-block: var(--space-lg);
  text-align:    center;
}
.page-hero-super {
  font-size:      0.78rem;
  font-weight:    600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.6);
  margin-bottom:  8px;
}
.page-hero h1  { color: #fff; margin-bottom: var(--space-sm); }
.page-hero-sub { font-size: 1rem; color: rgba(255, 255, 255, 0.75); max-width: 520px; margin: 0 auto; }

