/* ============================================
   观植愈境 · 动态主题（后台自定义）
   配色预设: custom
   字体预设: custom
   线条预设: custom
   生成: 2026-08-08 21:39:32
   ============================================ */

:root {
  /* --- 色彩体系（主题自定义） --- */
  --bg: #ffffff;
  --bg-alt: #e5f7ee;
  --bg-card: #FFFFFF;
  --text: #000000;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --brand: #2dbe6c;
  --brand-light: #5bcc8e;
  --brand-pale: #e5f7ee;
  --line: #000000;
  --line-light: #000000;

  /* --- 字体 --- */
  --font-sans: 'Montserrat', 'Inter', 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
  --font-display: 'Montserrat', 'Inter', 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
  --font-weight: 500;
  --letter-spacing: 0;
  --font-scale: 1;

  /* --- 线条与圆角 --- */
  --line-width: 1px;
  --radius: 0px;
  --radius-lg: 0px;
}

/* 全局字体应用 */
body {
  font-family: var(--font-sans);
  font-weight: var(--font-weight);
  letter-spacing: var(--letter-spacing);
}
b, strong { font-weight: calc(var(--font-weight) + 100); }

/* 导航 Logo 颜色同步 */
.logo-mark path { stroke: #2dbe6c; }
.nav-bar.scrolled { border-bottom-color: #000000; }
.nav-links a.active { color: #2dbe6c; }
.nav-links a.active::after { background: #2dbe6c; }

/* 滚动条 */
::-webkit-scrollbar-thumb { background: #000000; }
::-webkit-scrollbar-thumb:hover { background: #5bcc8e; }
