/* ── NaijaBuzz base.css — design tokens, reset, fonts ── */
@font-face { font-family: 'Inter'; font-display: swap; }
@font-face { font-family: 'Playfair Display'; font-display: swap; }

:root {
  --primary:     #1c1c1c;
  --gold:        #c9922a;
  --gold-dark:   #a8791f;
  --green:       #008751;
  --green-dark:  #006b40;
  --bg:          #f5f3ef;
  --card:        #fffef9;
  --border:      #e8e3d8;
  --text:        #1a1612;
  --text2:       #5a4f3e;
  --text3:       #3d3026;
  --take-bg:     linear-gradient(135deg, #fdf8ee, #f5f0e4);
  --take-text:   #3d2c00;
  --take-label:  #92400e;
  --quote-bg:    #fdf8ee;
  --card-radius: 1rem;
  --header-h:    160px;
}
[data-theme="dark"] {
  --bg:        #0f0f0f;
  --card:      #1a1a1a;
  --border:    rgba(255,255,255,0.08);
  --text:      #f0ede8;
  --text2:     #b0a898;
  --text3:     #d0c8be;
  --take-bg:   linear-gradient(135deg, #1e1a10, #251f0e);
  --take-text: #e8d5a0;
  --take-label:#c9922a;
  --quote-bg:  #1a1710;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  transition: background .25s, color .25s;
}
a   { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
#nb-main { outline: none; }
.container {
  max-width: 1440px;
  margin: 1.5rem auto;
  padding: 0 1.5rem;
}
@keyframes nb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.75); }
}
@keyframes nb-shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position:  800px 0; }
}
