/* ========================================
   CSS CUSTOM PROPERTIES - DESIGN SYSTEM
   Premium Magician Website
   ======================================== */

:root {
  /* ===== COLOR SCHEMES ===== */
  
  /* Homepage - Black & Gold (Prestige) */
  --color-gold-light: #FFD700;
  --color-gold: #D4AF37;
  --color-gold-dark: #B8860B;
  --color-black: #0A0A0A;
  --color-black-soft: #1A1A1A;
  --color-black-lighter: #2A2A2A;
  
  /* Services - Purple & Black (Mystery) */
  --color-purple-light: #9D4EDD;
  --color-purple: #7B2CBF;
  --color-purple-dark: #5A189A;
  --color-purple-deeper: #3C096C;
  --color-purple-glow: rgba(157, 78, 221, 0.4);
  
  /* Kids - Blue & Colorful (Fun) */
  --color-blue-bright: #00B4D8;
  --color-blue: #0077B6;
  --color-blue-dark: #03045E;
  --color-pink: #FF006E;
  --color-yellow: #FFBE0B;
  --color-green: #06FFA5;
  --color-orange: #FB5607;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-gray-light: #E5E5E5;
  --color-gray: #A0A0A0;
  --color-gray-dark: #4A4A4A;
  
  /* ===== TYPOGRAPHY ===== */
  
  /* Font Families */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  --font-accent: 'Cinzel', serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  --text-7xl: 4.5rem;      /* 72px */
  --text-8xl: 6rem;        /* 96px */
  
  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  
  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  
  /* ===== SPACING ===== */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */
  
  /* ===== LAYOUT ===== */
  --container-max: 1400px;
  --container-padding: var(--space-6);
  --section-padding: var(--space-20);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.5);
  
  /* Glow Shadows */
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.6),
               0 0 40px rgba(212, 175, 55, 0.4),
               0 0 60px rgba(212, 175, 55, 0.2);
  --glow-purple: 0 0 20px rgba(157, 78, 221, 0.6),
                 0 0 40px rgba(157, 78, 221, 0.4),
                 0 0 60px rgba(157, 78, 221, 0.2);
  --glow-blue: 0 0 20px rgba(0, 180, 216, 0.6),
               0 0 40px rgba(0, 180, 216, 0.4),
               0 0 60px rgba(0, 180, 216, 0.2);
  
  /* ===== TRANSITIONS ===== */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  --transition-slower: 800ms ease-in-out;
  
  /* Easing Functions */
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* ===== Z-INDEX LAYERS ===== */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-cursor: 9999;
  
  /* ===== ANIMATION TIMINGS ===== */
  --duration-instant: 100ms;
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-slower: 1000ms;
  --duration-slowest: 1500ms;
  
  /* ===== PARTICLES ===== */
  --particle-count: 50;
  --particle-size-min: 2px;
  --particle-size-max: 6px;
  
  /* ===== BREAKPOINTS (for JS) ===== */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
}

/* ===== DARK MODE ADJUSTMENTS ===== */
@media (prefers-color-scheme: dark) {
  :root {
    /* Already dark by default, but can adjust if needed */
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
    --transition-slower: 0ms;
    --duration-instant: 0ms;
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
    --duration-slower: 0ms;
    --duration-slowest: 0ms;
  }
}
