/* 
   MOTOVEST DESIGN TOKENS
   variables.css
 */

:root {

  /* 
     BRAND COLORS
   */

  --primary: #FACC15;
  --primary-hover: #EAB308;
  --primary-light: #FEF08A;

  --secondary: #18181B;

  /* 
     BACKGROUNDS
   */

  --bg-dark: #0B0B0B;
  --bg-card: #121212;
  --bg-card-hover: #181818;

  --bg-light: #FFFFFF;
  --bg-light-alt: #F9FAFB;

  /* 
     TEXT COLORS
 */

  --text-primary: #FFFFFF;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;

  --text-dark: #111827;

  /* 
     STATUS COLORS
   */

  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;

  /* 
     BORDERS
   */

  --border-color: #232323;
  --border-light: #E5E7EB;

  /* 
     SHADOWS
   */

  --shadow-sm:
    0 4px 10px rgba(0, 0, 0, 0.08);

  --shadow-md:
    0 10px 25px rgba(0, 0, 0, 0.15);

  --shadow-lg:
    0 20px 50px rgba(0, 0, 0, 0.25);

  --shadow-xl:
    0 30px 70px rgba(0, 0, 0, 0.35);

  /* 
     BORDER RADIUS
   */

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* 
     TRANSITIONS
   */

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* 
     TYPOGRAPHY
   */

  --font-primary: 'Inter', sans-serif;

  /* Font Sizes */

  --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: 2rem;        /* 32px */
  --text-4xl: 2.5rem;      /* 40px */
  --text-5xl: 3.5rem;      /* 56px */

  /* Font Weights */

  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* 
     CONTAINER WIDTHS
   */

  --container-sm: 768px;
  --container-md: 1024px;
  --container-lg: 1280px;
  --container-xl: 1440px;

  /* 
     SPACING SCALE
   */

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* 
     HEADER
   */

  --navbar-height: 80px;

  /* 
     BUTTONS
   */

  --btn-height: 52px;
  --btn-padding-x: 24px;

  /* 
     Z-INDEX
   */

  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 1000;
  --z-modal: 2000;
  --z-toast: 3000;

}