/* 本地字体定义 - 替代 Google Fonts */

/* Cinzel 字体 - 用于标题 */
/* 如果需要完整的 Cinzel 字体，请从以下地址下载并放入 fonts 文件夹：
   https://fonts.google.com/specimen/Cinzel
   然后取消下面的注释 */

/*
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Cinzel-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Cinzel-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Cinzel-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Cinzel-Bold.woff2') format('woff2');
}
*/

/* Roboto 字体 - 用于正文 */
/* 如果需要完整的 Roboto 字体，请从以下地址下载并放入 fonts 文件夹：
   https://fonts.google.com/specimen/Roboto
   然后取消下面的注释 */

/*
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/Roboto-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Roboto-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Roboto-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Roboto-Bold.woff2') format('woff2');
}
*/

/* 字体回退方案 - 使用系统字体作为替代 */
/* Cinzel 的替代方案：使用 Georgia 或 Times New Roman */
/* Roboto 的替代方案：使用系统 sans-serif 字体 */

/* 如果没有本地字体文件，使用以下系统字体回退 */
.cinzel-fallback {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
}

.roboto-fallback {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
}
