/* ============================================================
   DESIGN TOKENS — Shri Ram Jyotish Kendra
   Concept 2: Cosmic Wisdom / The Guiding Light
   ============================================================ */

:root {
  /* ── PRIMARY ────────────────────────────────────────────── */
  --color-navy: #0F2D5B;
  --color-blue: #1E4DAF;

  /* ── GOLD ───────────────────────────────────────────────── */
  --color-gold: #D4AF37;
  --color-gold-light: #F1D98A;
  --color-gold-dark: #B8941E;

  /* ── LIGHT SURFACES ─────────────────────────────────────── */
  --color-white: #FFFFFF;
  --color-ivory: #F8F5EC;
  --color-surface: #F8FAFF;
  --color-blue-mist: #EAF2FF;

  /* ── TEXT ────────────────────────────────────────────────── */
  --color-text: #0F172A;
  --color-muted: #667085;
  --color-text-light: #94A3B8;

  /* ── BORDERS ────────────────────────────────────────────── */
  --color-border: #D9DEE8;
  --color-border-light: #E8ECF4;

  /* ── STATUS ─────────────────────────────────────────────── */
  --color-success: #176B4D;
  --color-warning: #A66A00;
  --color-error: #A32626;
  --color-whatsapp: #25D366;

  /* ── TYPOGRAPHY — FAMILIES ──────────────────────────────── */
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Noto Sans", "Noto Sans Devanagari", system-ui, -apple-system, sans-serif;

  /* ── TYPOGRAPHY — SIZES ─────────────────────────────────── */
  --text-display: clamp(2.125rem, 1.5rem + 2.5vw, 3.75rem);   /* 34–60px */
  --text-h1: clamp(2.125rem, 1.75rem + 1.5vw, 3.375rem);       /* 34–54px */
  --text-h2: clamp(1.75rem, 1.5rem + 1vw, 2.75rem);             /* 28–44px */
  --text-h3: clamp(1.3125rem, 1.125rem + 0.75vw, 1.75rem);      /* 21–28px */
  --text-h4: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);           /* 18–22px */
  --text-body: clamp(0.9688rem, 0.9375rem + 0.125vw, 1.125rem); /* 15.5–18px */
  --text-body-lg: clamp(1.0625rem, 1rem + 0.25vw, 1.25rem);     /* 17–20px */
  --text-small: clamp(0.8125rem, 0.75rem + 0.25vw, 0.875rem);   /* 13–14px */
  --text-eyebrow: clamp(0.6875rem, 0.625rem + 0.25vw, 0.8125rem); /* 11–13px */

  /* ── TYPOGRAPHY — LINE HEIGHTS ──────────────────────────── */
  --leading-display: 1.1;
  --leading-heading: 1.2;
  --leading-body: 1.65;
  --leading-tight: 1.35;

  /* ── TYPOGRAPHY — WEIGHTS ───────────────────────────────── */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ── SPACING ────────────────────────────────────────────── */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.5rem;    /* 24px */
  --space-6: 2rem;      /* 32px */
  --space-7: 3rem;      /* 48px */
  --space-8: 4rem;      /* 64px */
  --space-9: 6rem;      /* 96px */
  --space-10: 7.5rem;   /* 120px */

  /* ── BORDER RADIUS ──────────────────────────────────────── */
  --radius-sm: 0.5rem;    /* 8px */
  --radius-md: 0.75rem;   /* 12px */
  --radius-lg: 1rem;      /* 16px */
  --radius-xl: 1.25rem;   /* 20px */
  --radius-full: 9999px;

  /* ── SHADOWS ────────────────────────────────────────────── */
  --shadow-sm: 0 4px 14px rgba(15, 45, 91, 0.08);
  --shadow-md: 0 10px 28px rgba(15, 45, 91, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 45, 91, 0.16);
  --shadow-card: 0 2px 8px rgba(15, 45, 91, 0.06), 0 8px 24px rgba(15, 45, 91, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(15, 45, 91, 0.14);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);

  /* ── LAYOUT ─────────────────────────────────────────────── */
  --container: 75rem;     /* 1200px */
  --container-lg: 77.5rem; /* 1240px */
  --container-sm: 52rem;  /* 832px */

  /* ── TRANSITIONS ────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 200ms;
  --duration-slow: 350ms;
  --duration-reveal: 400ms;

  /* ── Z-INDEX ────────────────────────────────────────────── */
  --z-header: 100;
  --z-mobile-menu: 200;
  --z-overlay: 300;
  --z-whatsapp: 90;
}
