/*
Theme Name: 映山红字体合规子主题
Theme URI: https://yshmetal.com/
Description: 仅替换网站字体及字体加载来源，不修改父主题的页面结构、内容、动画、图片、菜单、响应式布局或 SEO 设置。
Author: Dongguan Yingshanhong Metal Products Co., Ltd.
Template: yshmetal-lovable-exact-wp-theme-v4.3
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: yshmetal-font-safe-child
*/

/**
 * 字体策略：
 * - 英文、数字和中文正文：Inter + Noto Sans SC
 * - 中文标题：Noto Serif SC
 * - 后续均保留系统字体作为回退，避免字体资源加载失败时页面空白。
 *
 * 本文件只覆盖 font-family，不改变字号、字重、行高、字距、颜色、
 * 模块尺寸、动画、断点或其他布局规则。
 */

:root {
  --font-sans:
    "Inter",
    "Noto Sans SC",
    "PingFang SC",
    "Microsoft YaHei",
    "Hiragino Sans GB",
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif !important;

  --default-font-family:
    "Inter",
    "Noto Sans SC",
    "PingFang SC",
    "Microsoft YaHei",
    "Hiragino Sans GB",
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif !important;

  --font-display:
    "Noto Serif SC",
    "Source Han Serif SC",
    "Songti SC",
    STSong,
    SimSun,
    serif !important;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-sans) !important;
}

/* 保留 Lovable 原版中使用 .font-display 的标题视觉。 */
.font-display,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display) !important;
}
