﻿/* src/assets/styles/base/variables.css */
/* The Bandit Boys - Carolina Blue Theme */

:root {
  /* === BRAND COLORS === */
  --color-primary: #4B9CD3;           /* Carolina Blue */
  --color-primary-light: #6BB3E0;     /* Lighter Carolina Blue */
  --color-primary-dark: #3A7BA8;      /* Darker Carolina Blue */
  
  --color-secondary: #000000;         /* Black for text */
  --color-tertiary: #333333;          /* Dark gray for secondary text */
  
  /* === BACKGROUND COLORS === */
  --color-bg-primary: #4B9CD3;        /* Carolina Blue background */
  --color-bg-light: #E3F2FD;          /* Very light blue for cards */
  --color-white: #FFFFFF;             /* White for cards and modals */
  
  /* === TEXT COLORS === */
  --color-text-primary: #000000;      /* Black text on blue backgrounds */
  --color-text-secondary: #333333;    /* Dark gray text */
  --color-text-white: #FFFFFF;        /* White text on dark backgrounds */
  
  /* === NEUTRAL COLORS === */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  
  /* === STATUS COLORS === */
  --color-success: #10B981;
  --color-success-light: #34D399;
  --color-success-dark: #059669;
  
  --color-warning: #F59E0B;
  --color-warning-light: #FBBF24;
  --color-warning-dark: #D97706;
  
  --color-error: #EF4444;
  --color-error-light: #F87171;
  --color-error-dark: #DC2626;
  
  /* === TYPOGRAPHY === */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* === 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;
  
  /* === LAYOUT === */
  --container-max-width: 1200px;
  --header-height: 80px;
  
  /* === BORDERS & RADIUS === */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  
  /* === 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);
  
  /* === TRANSITIONS === */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}
