/*
  Design tokens — Aluboor Mega Sale landing page
  Palette sourced from the live Aluboor marketplace (navy + gold).
*/

:root {
  /* ---- Brand color ramp ---- */
  --color-navy-900: #071b36;
  --color-navy-800: #0a2a54;
  --color-navy-700: #0f4f9d; /* primary brand blue */
  --color-navy-600: #115bb5;
  --color-navy-500: #2e7cd6;
  --color-navy-100: #e8f0fc;

  --color-gold-600: #e6a800;
  --color-gold-500: #ffc220; /* brand accent */
  --color-gold-300: #ffe08a;
  --color-gold-100: #fff6dd;

  --color-ink: #10182b;
  --color-slate: #48526b;
  --color-muted: #6b7488;
  --color-line: #e4e8f1;

  --color-surface: #ffffff;
  --color-bg: #fafbfd;
  --color-bg-alt: #f2f5fb;

  /* ---- Type ---- */
  --font-latin: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-arabic: "Tajawal", "Segoe UI", system-ui, -apple-system, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.18vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
  --text-xl: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --text-hero: clamp(2.35rem, 1.5rem + 3.6vw, 4.2rem);

  --leading-tight: 1.12;
  --leading-snug: 1.35;
  --leading-normal: 1.65;

  /* ---- Spacing scale ---- */
  --space-2xs: 0.375rem;
  --space-xs: 0.625rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-section: clamp(4rem, 3rem + 4.5vw, 7.5rem);

  /* ---- Radius / elevation ---- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 30, 66, 0.06);
  --shadow-md: 0 14px 34px rgba(10, 30, 66, 0.12);
  --shadow-lg: 0 26px 64px rgba(10, 30, 66, 0.2);
  --shadow-gold: 0 14px 30px rgba(230, 168, 0, 0.35);

  /* ---- Motion ---- */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 650ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1200px;
}
