/* ============================================
   Design Tokens - 风景分享网站
   柔和唯美风格
   ============================================ */

:root {
  /* ── 柔和唯美色彩 ── */
  --bg-primary: #faf8f5;
  --bg-secondary: #f5f0eb;
  --bg-card: rgba(255,255,255,0.85);
  --bg-card-hover: rgba(255,255,255,0.95);
  --bg-overlay: rgba(250,248,245,0.9);

  --accent: #d4a574;
  --accent-light: #e8c9a0;
  --accent-soft: #a8c5da;
  --accent-green: #8fb996;
  --accent-pink: #e8b4b8;
  --accent-purple: #b8a9d4;

  --text-primary: #3a3a3a;
  --text-secondary: #7a7a7a;
  --text-muted: #b0b0b0;
  --text-inverse: #faf8f5;

  --border-subtle: rgba(0,0,0,0.05);
  --border-light: rgba(0,0,0,0.08);

  /* ── 字体系统 ── */
  --font-heading: 'Noto Serif SC', 'Georgia', serif;
  --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* ── 字号 ── */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* ── 间距（4px基准） ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ── 圆角 ── */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ── 阴影（柔和） ── */
  --shadow-soft: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.1);

  /* ── 过渡 ── */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* ── Z-index ── */
  --z-nav: 1000;
  --z-music: 900;
  --z-overlay: 800;
  --z-dropdown: 700;
}
