/* Justin Kuiper — Author Site
   Dark theme, blue (#3b82f6) + gold (#f59e0b) accents
   Fonts: Rajdhani (headings), Source Sans Pro (body), Libre Baskerville (quotes) */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Source+Sans+3:wght@400;600&family=Libre+Baskerville:ital@0;1&display=swap');

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

:root {
  --bg: #0e1015;
  --surface: #16181d;
  --text: #d4d4d8;
  --text-muted: #a1a1a6;
  --heading: #f0f0f2;
  --blue: #3b82f6;
  --gold: #f59e0b;
  --red: #ef4444;
  --purple: #a78bfa;
  --green: #10b981;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* ─── Navigation ─── */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
}

.site-nav .logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav .logo a { color: inherit; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.site-nav li a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.site-nav li a:hover,
.site-nav li a.active { color: var(--blue); }

/* ─── Main Content ─── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px 80px;
}

/* ─── Headings ─── */
h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  color: var(--heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 { font-size: 48px; }
h2 { font-size: 24px; margin-bottom: 20px; }
h3 { font-size: 18px; }

/* ─── Separator ─── */
hr {
  border: none;
  height: 1px;
  background-color: rgba(212, 212, 216, 0.1);
  margin: 30px 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.btn-blue { background-color: var(--blue); color: #fff; }
.btn-blue:hover { background-color: #2563eb; color: #fff; }

.btn-gold { background-color: var(--gold); color: #1a1a1a; }
.btn-gold:hover { background-color: #d97706; color: #1a1a1a; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover { background-color: var(--blue); color: #fff; }

/* ─── Cards / Surfaces ─── */
.card {
  background-color: var(--surface);
  border-radius: 8px;
  padding: 30px;
}

/* ─── Quote ─── */
.tagline {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
}

/* ─── Footer ─── */
.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  border-top: 1px solid rgba(212, 212, 216, 0.1);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Stats Row ─── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px 0;
}

.stats-row .stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
}

.stats-row .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── Tags / Chips ─── */
.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.chip-blue { background-color: rgba(59,130,246,0.2); color: var(--blue); }
.chip-gold { background-color: rgba(245,158,11,0.2); color: var(--gold); }
.chip-red  { background-color: rgba(239,68,68,0.2); color: var(--red); }

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .site-nav { flex-direction: column; gap: 16px; }
  .site-nav ul { gap: 16px; }
  h1 { font-size: 32px; }
  .stats-row { gap: 24px; }
  .page-content { padding: 20px 16px 60px; }
}
