/* ===========================================
   CSS Variables
   전역 CSS 변수 정의
   Firestore settings/cssVariables에서 동적으로 오버라이드 가능
   =========================================== */

:root {
    /* 테마 색상 */
    --theme-accent: #4361ee;
    --theme-accent-hover: #3651de;
    --theme-text: #333333;
    --theme-gray: #666666;
    --theme-light-gray: #f8f9fa;
    --theme-border: #efefef;

    /* 타이포그래피 */
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --font-weight-heading: 700;
    --font-weight-normal: 400;

    /* 레이아웃 */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}
