/* 
   JKICI Design System Variables
   Color Palette: Deep Navy Blue & Premium Gold
   Typography: Outfit (Headings) & Inter (Body)
*/

:root {
    /* Color Palette */
    --color-primary-darker: #050811;
    --color-primary-dark: #0a0f1d;
    --color-primary: #0f172a;           /* Deep Navy */
    --color-primary-light: #1e293b;     /* Navy Slate */
    --color-primary-lighter: #334155;   /* Steel Slate */
    --color-primary-lightest: #475569;
    
    --color-accent: #f59e0b;            /* Brand Amber/Gold */
    --color-accent-hover: #d97706;      /* Darker Gold */
    --color-accent-light: #fef3c7;      /* Warm Gold Tint */
    --color-accent-dark: #78350f;
    
    /* Neutrals */
    --color-text-dark: #0f172a;
    --color-text-body: #334155;
    --color-text-muted: #64748b;
    --color-text-light: #f8fafc;
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;
    --color-bg-slate: #f1f5f9;
    --color-border: #e2e8f0;
    --color-border-dark: #334155;
    
    /* Utility Colors */
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-success-bg: #ecfdf5;
    --color-error-bg: #fef2f2;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Sizing & Spacing */
    --max-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    
    /* Shadow Presets */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 20px -3px rgba(245, 158, 11, 0.25);
    --shadow-navy: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
    
    /* Grid Blueprint Overlay opacity */
    --blueprint-opacity: 0.04;
    
    /* Transition Settings */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
