/* --- THEME SCHEMA (theme.css) - NRI FEDERATION REVISED THEME --- */
@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  /* ── CLIENT SPECIFIC COLOR TOKENS ──────────────────────────── */
  --ink: #0A2540;        /* Deep Navy for main headings, dark sections, navbar */
  --ink-2: #123A5C;      /* Secondary Navy for card borders, hover states */
  --gold: #C07C15;       /* Premium Gold for primary accents, CTAs, icons */
  --gold-hover: #A86A0D; /* Darker Gold for hover states */
  --gold-light: #FFF8EE; /* Pale gold wash */
  --paper: #FCFAF6;      /* Warm off-white background */
  --paper-2: #F4F1EA;    /* Soft beige / secondary section background */
  --rule: #D3CBB9;       /* Warm border / divider rule */
  --rule-dark: rgba(255, 255, 255, 0.15); /* Dark section border */
  --body: #3B4A57;       /* Refined slate body text */
  --navy-footer: #061A2C; /* Deepest footer background */

  /* ── COMPONENT ALIAS TOKENS ─────────────────────────────────── */
  --color-primary: var(--ink);
  --color-secondary: var(--paper);
  --color-white: #ffffff;
  --color-black: #000000;

  --color-accent: var(--gold);
  --color-accent-hover: var(--gold-hover);
  --color-accent-tag: #F4E2C7;
  --color-accent-light: var(--gold-light);

  /* ── TEXT ─────────────────────────────────────────────────── */
  --color-text-main: var(--ink);
  --color-text-muted: var(--body);
  --color-text-light: #7E8E9B;

  /* ── BORDERS & BACKGROUNDS ────────────────────────────────── */
  --color-border: var(--rule);
  --color-light-bg: var(--paper);
  --color-white-bg: #ffffff;
  --color-info-card: var(--paper-2);
  --color-footer-bg: var(--navy-footer);
  --color-light-white: var(--paper);

  /* ── MISC ─────────────────────────────────────────────────── */
  --color-blue: var(--ink);
  --color-blue-light: var(--ink-2);

  /* ── TYPOGRAPHY ───────────────────────────────────────────── */
  --font-heading: "Newsreader", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* ── TYPE SCALE ───────────────────────────────────────────── */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */

  /* ── LAYOUT ───────────────────────────────────────────────── */
  --max-width: 1200px;
  --radius-md: 4px;
  --radius-lg: 8px;
}

/* ── BASE RESET ─────────────────────────────────────────────── */
body {
  margin: 0;
  padding: 0;
  background-color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: inherit;
}

.mono,
.eyebrow-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- BUTTONS --- */
.btn-gold {
  background: var(--gold) !important;
  color: #221402 !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}
.btn-gold:hover {
  background: var(--gold-hover) !important;
  color: #ffffff !important;
}

.btn-line {
  border: 1px solid var(--rule-dark) !important;
  color: #ffffff !important;
  background: transparent !important;
}
.btn-line:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
