/* =================================================================
   GLOBAL VARIABLES
   - This file is the single source of truth for shared CSS variables.
   - It should be linked in the <head> of every page.
================================================================= */

:root {
  /* SLICK Brand Colors */
  --brand-pink: #D21BBF;
  --brand-magenta: #9E1BB8;
  --brand-indigo: #0C2EA8;
  --brand-deep: #0A0F1E;
  --white: #fff;
  --muted: #f4f6f8;
  --link: #BBD3FF;

  /* Gradients */
  --hero-gradient: linear-gradient(135deg, var(--brand-magenta) 0%, var(--brand-indigo) 100%);
  --cta-gradient: linear-gradient(135deg, var(--brand-pink), var(--brand-magenta));

  /* RGB versions for rgba() shadows */
  --brand-pink-rgb: 210, 27, 191;
  --brand-indigo-rgb: 12, 46, 168;

  /* Mobile Navigation */
  --mobile-nav-bg: rgba(10, 15, 30, .96);

  /* WiseOwlBuys Legacy Colors (from index.html) */
  --primary: #0A3D62;
  --secondary: #D4AF37;
  --black: #000000;
}