/** Color Variables **/

 :root {
  --color-primary: #4c1a57;
  --color-secondary: #429ea6;
  --color-accent: #f58a07;
  --color-dark: #1a1a1a;
  --color-light: #f8f9fa;
  --color-white: #ffffff;
  --color-gray: #6c757d;
  --color-border: #dee2e6;

  --shadow-accent: 0 4px 12px rgba(245, 138, 7, 0.3);
  
  /* Compliance Settings - Text colors calculate automatically based on these flags */
  /* Set to 0 if secondary passes WCAG 4.5:1 (will automatically use white text) */
  /* Set to 1 if secondary does NOT pass WCAG 4.5:1 (will automatically use dark text) */
  --secondary-fails-compliance: 1;
  
  /* Set to 0 if accent passes WCAG 4.5:1 (will automatically use white text) */
  /* Set to 1 if accent does NOT pass WCAG 4.5:1 (will automatically use dark text) */
  --accent-fails-compliance: 1;
 }