/* ============================================
   GOD'S INVASION OUTREACH - DESIGN TOKENS
   ============================================ */

:root {
  /* Brand Colors */
  --brand-blue: #9fb5d5;
  --brand-blue-deep: #08357a;
  --brand-blue-light: #7bb7d5;
  --accent-gold: #454514;
  --accent-gold-bright: #e6ff42;
  --accent-gold-dark: #e6b800;
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eaeaea;
  --color-gray-300: #ddd;
  --color-gray-400: #bbb;
  --color-gray-500: #666;
  --color-gray-600: #444;
  --color-gray-700: #333;
  --color-gray-800: #222;
  --color-gray-900: #111;
  
  /* Semantic Colors */
  --text-primary: var(--color-gray-700);
  --text-secondary: var(--color-gray-500);
  --text-light: var(--color-gray-200);
  --bg-page: var(--color-gray-100);
  --bg-card: rgba(198, 168, 248, 0.2);
  --bg-dark: rgba(18, 14, 18, 0.85);
  
  /* Typography */
  --font-primary: Arial, Helvetica, sans-serif;
  --font-accent: cursive;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.15rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  
  /* Spacing Scale */
  --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-max: 1200px;
  --container-padding: 1.5rem;
  --navbar-height: 80px;
  --section-padding: 5rem;
  
  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 14px 35px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-toast: 500;
}