/* =====================================================
   CSS 변수 - 디자인 시스템
   docs/02-DESIGN-SYSTEM.md 기반
   ===================================================== */

:root {
    /* =====================================================
       Colors
       ===================================================== */

    /* Primary Colors */
    --color-primary: #FF6B35;
    --color-primary-dark: #E55A2B;
    --color-primary-light: #FF8F66;

    /* Secondary Colors */
    --color-secondary: #2E4057;
    --color-secondary-dark: #1A2634;
    --color-secondary-light: #4A6078;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E0E0E0;
    --color-gray-300: #BDBDBD;
    --color-gray-400: #9E9E9E;
    --color-gray-500: #757575;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A2E 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);

    /* =====================================================
       Typography
       ===================================================== */

    /* Font Families */
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-display: 'YoonDokrip', 'Black Han Sans', sans-serif;
    --font-english: 'Roboto', sans-serif;

    /* Font Sizes */
    --font-size-hero: 72px;
    --font-size-section-title: 48px;
    --font-size-sub-title: 32px;
    --font-size-body-lg: 18px;
    --font-size-body: 16px;
    --font-size-caption: 14px;

    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.3;
    --line-height-relaxed: 1.6;

    /* =====================================================
       Spacing
       ===================================================== */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* =====================================================
       Shadows
       ===================================================== */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 20px rgba(255,107,53,0.5);
    --shadow-glow-strong: 0 0 40px rgba(255,107,53,0.7);

    /* =====================================================
       Border Radius
       ===================================================== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* =====================================================
       Animation
       ===================================================== */
    --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --duration-fast: 0.15s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;
    --duration-slower: 0.8s;

    /* =====================================================
       Z-Index
       ===================================================== */
    --z-background: 1;
    --z-particles: 2;
    --z-content: 10;
    --z-overlay: 20;
    --z-navigation: 100;
    --z-modal: 200;
    --z-tooltip: 300;

    /* =====================================================
       Layout
       ===================================================== */
    --max-width: 1920px;
    --content-width: 1200px;
}
