/* ==========================================================================
   全局主题变量定义 (CSS Custom Properties)
   支持亮色/暗色模式、响应式间距与统一排版规范
   ========================================================================== */

:root {
  /* 品牌核心色彩 (延续华人街佳缘经典红) */
  --primary: #e53d2a;
  --primary-hover: #c93020;
  --primary-light: #fff2f0;
  --primary-gradient: linear-gradient(135deg, #e53d2a 0%, #ff6b5b 100%);
  
  /* 辅助与强调色 */
  --accent: #ff6b5b;
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;

  /* 亮色模式中性色 */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-header: rgba(255, 255, 255, 0.88);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  --border-subtle: #e2e8f0;
  --border-focus: #e53d2a;

  /* 阴影效果 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  /* 圆角 */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* 布局与尺寸 */
  --header-height: 64px;
  --sidebar-width: 280px;
  --max-content-width: 1200px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* 字体家族 */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* 媒体查询支持系统级深色模式 (可选或预留扩展) */
@media (prefers-color-scheme: dark) {
  :root.auto-dark {
    --bg-page: #0b0f17;
    --bg-surface: #131b28;
    --bg-surface-elevated: #1a2436;
    --bg-subtle: #1e293b;
    --bg-header: rgba(19, 27, 40, 0.88);

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    --border-subtle: #243248;
    --primary-light: rgba(229, 61, 42, 0.15);
  }
}
