/* ============================================
   센소리 앤 브레인 — 디자인 토큰
   ============================================
   홈페이지 팔레트 기반 통일 디자인 시스템.
   admin / 학생 앱 모두에서 import하여 사용.
   ============================================ */

:root {
    /* ── 브랜드 색상 ── */
    --sb-primary: #4f2e83;
    --sb-primary-light: #6a4c9c;
    --sb-primary-dark: #3d2266;
    --sb-secondary: #93a546;
    --sb-secondary-light: #a8b85e;
    --sb-accent: #3a7bd5;
    --sb-danger: #e24d51;
    --sb-success: #059669;
    --sb-warning: #f59e0b;
    --sb-rose: #c74375;
    --sb-rose-light: #d96a93;

    /* ── 배경/표면 ── */
    --sb-bg: #f5f0eb;
    --sb-bg-warm: #faf7f3;
    --sb-surface: #ffffff;
    --sb-surface-hover: #f3f0f8;

    /* ── 텍스트 ── */
    --sb-text: #2c3e50;
    --sb-text-secondary: #6c757d;
    --sb-text-muted: #94a3b8;
    --sb-text-on-primary: #ffffff;

    /* ── 테두리 ── */
    --sb-border: #e1e8ed;
    --sb-border-light: #f0f0f0;
    --sb-border-focus: #4f2e83;

    /* ── 둥글기 ── */
    --sb-radius-sm: 8px;
    --sb-radius: 12px;
    --sb-radius-lg: 16px;
    --sb-radius-xl: 20px;
    --sb-radius-full: 50px;

    /* ── 그림자 ── */
    --sb-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --sb-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --sb-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --sb-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --sb-shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.14);

    /* ── 타이포그래피 ── */
    --sb-font: 'Noto Sans KR', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --sb-font-weight-light: 300;
    --sb-font-weight-regular: 400;
    --sb-font-weight-medium: 500;
    --sb-font-weight-semibold: 600;
    --sb-font-weight-bold: 700;

    /* ── 간격 ── */
    --sb-space-xs: 4px;
    --sb-space-sm: 8px;
    --sb-space-md: 16px;
    --sb-space-lg: 24px;
    --sb-space-xl: 32px;
    --sb-space-2xl: 48px;

    /* ── 트랜지션 ── */
    --sb-transition: all 0.2s ease;
    --sb-transition-slow: all 0.3s ease;

    /* ── 레이아웃 ── */
    --sb-container-max: 1200px;
    --sb-container-narrow: 480px;
}

/* ── 공통 폰트 로드 ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');
