/* CSS Variables - 지산세무회계 디자인 시스템 (Gamma Style) */
/* Last updated: 2026-01-22 - Force CDN refresh */

:root {
  /* Primary - 블루 계열 (Gamma 스타일) */
  --color-primary: #4169e1;
  --color-primary-light: #6b8cef;
  --color-primary-dark: #2f4fc2;
  --color-primary-bg: #e8eeff;

  /* Secondary - 브라운/구리 계열 (Gamma 액센트) */
  --color-secondary: #8b6914;
  --color-secondary-light: #c9a868;
  --color-secondary-dark: #6b5010;
  --color-secondary-bg: #f5f0e6;

  /* Accent - 라벤더/연보라 */
  --color-accent: #b8c4e8;
  --color-accent-light: #dde3f5;
  --color-accent-bg: #e8ecf8;

  /* Brown/Copper for cards and accents */
  --color-brown: #8b7355;
  --color-brown-light: #a69078;
  --color-brown-dark: #5c4a38;
  --color-copper: #b87333;

  /* Neutral */
  --color-background: #f5f5f5;
  --color-surface: #ffffff;
  --color-surface-alt: #f8f8fa;
  --color-text: #333333;
  --color-text-light: #555555;
  --color-text-muted: #777777;
  --color-border: #e0e0e0;
  --color-border-light: #eeeeee;

  /* Semantic */
  --color-success: #4caf50;
  --color-warning: #d4a574;
  --color-error: #f44336;

  /* Typography */
  --font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;    /* 18px */
  --font-size-xl: 1.25rem;     /* 20px */
  --font-size-2xl: 1.5rem;     /* 24px */
  --font-size-3xl: 1.875rem;   /* 30px */
  --font-size-4xl: 2.25rem;    /* 36px */
  --font-size-5xl: 3rem;       /* 48px */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --spacing-1: 0.25rem;   /* 4px */
  --spacing-2: 0.5rem;    /* 8px */
  --spacing-3: 0.75rem;   /* 12px */
  --spacing-4: 1rem;      /* 16px */
  --spacing-5: 1.25rem;   /* 20px */
  --spacing-6: 1.5rem;    /* 24px */
  --spacing-8: 2rem;      /* 32px */
  --spacing-10: 2.5rem;   /* 40px */
  --spacing-12: 3rem;     /* 48px */
  --spacing-16: 4rem;     /* 64px */
  --spacing-20: 5rem;     /* 80px */
  --spacing-24: 6rem;     /* 96px */

  /* Border Radius */
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  --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.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: var(--spacing-4);
  --section-padding: var(--spacing-16);
  --header-height: 70px;
}
