/* ===== DIVINE LOVE ENERGY DESIGN SYSTEM ===== */
/* Centralized CSS variables for consistent theming */

:root {
    /* COSMIC COLOR PALETTE */
    --cosmic-purple: #533483;
    --cosmic-gold: #d4af37;
    --deep-space: #0b1426;
    --healing-green: #4caf50;
    --pure-white: #ffffff;
    
    /* TEXT COLORS - High Contrast */
    --text-primary: #111827;      /* Dark text - high readability */
    --text-secondary: #374151;    /* Medium dark */
    --text-tertiary: #4b5563;     /* Acceptable minimum */
    --text-muted: #cbd5e1;        /* Light text on dark backgrounds */
    --text-white: #ffffff;        /* White text */
    
    /* BACKGROUND COLORS */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #1e293b;
    --bg-cosmic: linear-gradient(135deg, #0f172a, #1e293b);
    
    /* BORDERS & SHADOWS */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    --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.1);
    --shadow-cosmic: 0 20px 40px rgba(83, 52, 131, 0.3);
    
    /* SPACING SCALE */
    --space-xs: 0.25rem;    /* 4px */
    --space-sm: 0.5rem;     /* 8px */
    --space-md: 1rem;       /* 16px */
    --space-lg: 1.5rem;     /* 24px */
    --space-xl: 2rem;       /* 32px */
    --space-2xl: 3rem;      /* 48px */
    --space-3xl: 4rem;      /* 64px */
    
    /* TYPOGRAPHY */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-display: 'Playfair Display', Georgia, serif;
    
    --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-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* BORDER RADIUS */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    
    /* TRANSITIONS */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-INDEX LAYERS */
    --z-dropdown: 1000;
    --z-sticky: 1010;
    --z-fixed: 1020;
    --z-modal-backdrop: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* RESPONSIVE BREAKPOINTS */
/* Use with @media (min-width: var(--breakpoint-*)) */
:root {
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}

/* COMPONENT STATES */
:root {
    --state-hover-opacity: 0.8;
    --state-active-scale: 0.98;
    --state-focus-ring: 0 0 0 3px rgba(99, 102, 241, 0.1);
}