/* Xela LTD - Color Variables */

:root {
  /* Brand Colors */
  --brand-primary: #ffbb4b;
  --brand-primary-light: #ffcc73;
  --brand-primary-dark: #e6a942;
  
  /* Dark Theme Colors */
  --bg-primary: #121214;
  --bg-secondary: #1e1e20;
  --bg-tertiary: #2a2a2c;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --text-accent: var(--brand-primary);
  
  /* Interactive Elements */
  --hover-bg: rgba(255, 187, 75, 0.1);
  --active-bg: rgba(255, 187, 75, 0.2);
  --border-color: #333333;
  --border-light: #444444;
  
  /* Dot Grid */
  --dot-color: rgba(255, 255, 255, 0.02);
  --dot-hover-color: rgba(255, 255, 255, 0.02);
  --dot-size: 2px;
  --dot-spacing: 40px;
  --dot-reactive-radius: 150px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.6);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  --gradient-bg: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  
  /* Typography */
  --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;
  
  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}
