/* ============================================================
   DESIGN TOKENS — Better Call Cleaners
   Brand colours, typography, spacing, and component variables.
   Import this file before styles.css.
   ============================================================ */

:root {
  /* ── Brand Colours ─────────────────────────────────────── */
  --yellow:        #FFF600;
  --yellow-dark:   #E6DD00;
  --navy:          #12243A;
  --navy-dark:     #0a1929;
  --navy-mid:      #1a3555;
  --white:         #FFFFFF;
  --off-white:     #F8F9FA;
  --light-grey:    #F0F2F5;
  --border:        #E5E7EB;
  --text:          #12243A;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --whatsapp:      #25D366;
  --whatsapp-dark: #1DA851;

  /* ── Typography ────────────────────────────────────────── */
  --font-heading:  'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  --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 */
  --text-6xl:   3.75rem;    /* 60px */

  /* ── Spacing ───────────────────────────────────────────── */
  --space-1:    0.25rem;
  --space-2:    0.5rem;
  --space-3:    0.75rem;
  --space-4:    1rem;
  --space-5:    1.25rem;
  --space-6:    1.5rem;
  --space-8:    2rem;
  --space-10:   2.5rem;
  --space-12:   3rem;
  --space-16:   4rem;
  --space-20:   5rem;
  --space-24:   6rem;

  /* ── Layout ────────────────────────────────────────────── */
  --container:  1280px;
  --nav-height: 80px;

  /* ── Borders ───────────────────────────────────────────── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Shadows ───────────────────────────────────────────── */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-cta:  0 4px 20px rgba(0,0,0,0.18);
  --shadow-nav:  0 2px 16px rgba(18,36,58,0.12);

  /* ── Transitions ───────────────────────────────────────── */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}
