/* ========================================
   AFRICAN SPOTS v2 - DESIGN SYSTEM
   Core colors, typography, and spacing
   ======================================== */

:root {
  /* Brand Colors - ORANGE ONLY FOR BUTTONS/ICONS */
  --primary: #FF6600;        /* Orange - buttons, icons, accents only */
  --primary-dark: #E55A00;   /* Darker orange - button hover states */
  --primary-light: #FF7A1A;  /* Lighter orange - button active states */
  --primary-50: #FFF7ED;     /* Very light orange - subtle highlights only */
  
  /* Background Colors */
  --bg-white: #FFFFFF;       /* Main background for cards, sections */
  --bg-black: #1A1A1A;       /* Dark background when needed */
  --bg-gray-50: #FAFAFA;     /* Light gray backgrounds */
  --bg-gray-100: #F5F5F5;    /* Slightly darker gray backgrounds */
  
  /* Text Colors - CORRECTED HIERARCHY */
  --text-primary: #000000;   /* Primary text - pure black for headings */
  --text-secondary: #1A1A1A; /* Secondary text - dark gray for body text */
  --text-muted: #737373;     /* Muted text - medium gray */
  --text-light: #A3A3A3;     /* Light text - light gray */
  --text-white: #FFFFFF;     /* White text for dark backgrounds */
  
  /* Border Colors */
  --border-light: #E5E5E5;   /* Light borders */
  --border-medium: #D4D4D4;  /* Medium borders */
  --border-dark: #A3A3A3;    /* Dark borders */
  
  /* Semantic Colors */
  --success: #10B981;        /* Green for success states */
  --warning: #F59E0B;        /* Yellow for warnings */
  --error: #EF4444;          /* Red for errors */
  --info: #3B82F6;           /* Blue for info */
  
  /* Typography */
  --font-display: 'Krona One', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing Scale */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Base Typography */
body {
  font-family: var(--font-body);
  color: var(--text-secondary);  /* Body text uses secondary color */
  background-color: var(--bg-white);
  line-height: 1.6;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);    /* Headings use primary color */
  line-height: 1.2;
  margin: 0;
}

/* Utility Classes */
.text-primary { color: var(--text-primary); }      /* #000000 */
.text-secondary { color: var(--text-secondary); }  /* #1A1A1A */
.text-muted { color: var(--text-muted); }          /* #737373 */
.text-white { color: var(--text-white); }          /* #FFFFFF */

.bg-white { background-color: var(--bg-white); }
.bg-black { background-color: var(--bg-black); }
.bg-gray-50 { background-color: var(--bg-gray-50); }
.bg-gray-100 { background-color: var(--bg-gray-100); }
