/* Ajara slide deck — branding matches skypath-landingpage design system */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@600;700&display=swap');

:root {
  --navy: #1E2A6B;
  --navy2: #2D3A8F;
  --accent: #3B5BDB;
  --accent2: #8FA6F2;
  --amber: #F59F00;
  --amber-soft: #fff4e0;
  --teal: #0CA678;
  --teal-soft: #e6f7f1;
  --ink: #1E293B;
  --muted: #475569;
  --line: #E9EDF5;
  --paper: #F8FAFC;
  --paper2: #EEF1FD;
}

/* ---------- Base typography ---------- */
.reveal,
.reveal .slides {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
}

.reveal { font-size: 28px; }

.reveal h1, .reveal h2, .reveal h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: var(--navy);
}

.reveal h2 { font-size: 1.5em; margin-bottom: 0.5em; }
.reveal h3 { font-size: 1.1em; color: var(--accent); }

.reveal p, .reveal li { color: var(--ink); }
.reveal strong { color: var(--navy2); }

/* small accent rule under every slide title, echoing the landing page "kicker" bar */
.reveal .slides section:not(.title-slide):not(.center) > h2:first-child {
  position: relative;
  padding-bottom: 0.3em;
}
.reveal .slides section:not(.title-slide):not(.center) > h2:first-child::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 60px; height: 4px;
  border-radius: 2px;
  background: var(--accent);
}

/* ---------- Title slide (cover) + section dividers (level-1 headings) ---------- */
.reveal #title-slide,
.reveal section.title-slide {
  background: var(--navy) !important;
  color: #fff !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.reveal #title-slide h1.title,
.reveal section.title-slide h1 {
  color: #fff !important;
  font-size: 1.8em;
}
.reveal #title-slide .subtitle {
  color: var(--accent2) !important;
  font-weight: 500;
  font-size: 0.85em;
}
.reveal #title-slide::before,
.reveal section.title-slide::before {
  content: "";
  display: block;
  margin: 0 auto 1.2em;
  width: 64px; height: 64px;
  background: url('../images/brand/logo-ajara-mark-v2-white.png') center/contain no-repeat;
}

/* ---------- Tables ---------- */
.reveal table {
  font-size: 0.62em;
  border-collapse: collapse;
}
.reveal table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.reveal table tbody tr:nth-child(even) {
  background: var(--paper2);
}
.reveal table td, .reveal table th {
  border: 1px solid var(--line);
  padding: 0.35em 0.6em;
}

/* ---------- Images ---------- */
.reveal img {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(30, 41, 89, 0.35);
  max-height: 320px;
  width: auto;
}
.reveal .columns img { max-height: 260px; }

/* ---------- Columns layout ---------- */
.reveal .columns {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.reveal .column { flex: 1; }

/* ---------- Callouts (recolor to brand palette) ---------- */
.reveal .callout {
  font-size: 0.68em;
  border-radius: 10px;
}
.reveal .callout-note {
  border-left-color: var(--accent) !important;
  background: var(--paper2) !important;
}
.reveal .callout-warning {
  border-left-color: var(--amber) !important;
  background: var(--amber-soft) !important;
}
.reveal .callout-important {
  border-left-color: #B91C1C !important;
  background: #fdecea !important;
}

/* ---------- Footer / progress bar ---------- */
.reveal .slide-number {
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.reveal .footer {
  color: var(--muted) !important;
  font-weight: 600;
}
.reveal .progress {
  color: var(--accent);
  height: 4px;
}
.reveal .progress span {
  background: linear-gradient(90deg, var(--accent), var(--teal));
}

/* ---------- Links ---------- */
.reveal a { color: var(--accent); }
