/* CSS Variables */
:root {
    /* GIJEOM Brand Colors - Based on CI Manual */
    /* Primary: Absolute Black - 본질, 깊은 사고, 전문성 */
    --primary-color: #303030;  /* Main Black (R:48 G:48 B:48) */
    --primary-dark: #000000;   /* Pure Black */
    --primary-light: #4a4a4a;  /* Light Black */
    
    /* Accent: Deep Blue - 신뢰, 지성, 파트너십 */
    --accent-color: #495B7B;   /* Deep Blue (R:73 G:91 B:123) */
    --accent-dark: #3a4a61;    /* Darker Blue */
    --accent-light: #5a6d8f;   /* Lighter Blue */
    
    /* Text Colors */
    --text-primary: #303030;    /* Main text - Black */
    --text-secondary: #495B7B;  /* Secondary text - Deep Blue */
    --text-light: #6b7280;      /* Light text */
    --text-white: #ffffff;      /* White text */
    
    /* Background Colors */
    --bg-primary: #ffffff;      /* Pure White - 무한한 가능성, 새로운 시작 */
    --bg-secondary: #fafafa;    /* Light Gray */
    --bg-accent: #f5f7fa;       /* Very Light Blue-Gray */
    --bg-dark: #303030;         /* Dark background */
    
    /* Border & Shadow */
    --border-color: #e0e0e0;
    --shadow-color: rgba(48, 48, 48, 0.08);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 var(--shadow-color);
    --shadow-md: 0 4px 6px -1px var(--shadow-color);
    --shadow-lg: 0 10px 15px -3px var(--shadow-color);
    --shadow-xl: 0 20px 25px -5px var(--shadow-color);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1rem;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --text-light: #9ca3af;
        
        --bg-primary: #111827;
        --bg-secondary: #1f2937;
        --bg-gray: #374151;
        
        --border-color: #374151;
        --shadow-color: rgba(0, 0, 0, 0.3);
    }
}