/* General Styles */
@font-face {
    font-family: "Roboto Mono";
    src: url("../assets/fonts/RobotoMono-Light.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FZZJ-YZDKJW";
    src: url("../assets/fonts/FZZJ-YZDKJW.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FZZJ-YZDKJW-Regular";
    src: url("../assets/fonts/FZZJ-YZDKJW.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FZFangSong-Z02S";
    src: url("../assets/fonts/FZFSJW.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FZFangSong-Z02S-Regular";
    src: url("../assets/fonts/FZFSJW.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: "Roboto Mono", "Stoke", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f2ea;
}

/* Simple site header */
.site-header {
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f2ea;
}

.site-title {
    font-weight: 600;
    letter-spacing: 0.4px;
}

.site-nav {
    list-style: none;
    display: flex;
    gap: 1.2rem;
}

.site-nav a {
    color: #1b1b1b;
    text-decoration: none;
    font-size: 14px;
}

.site-nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 2.5rem 2rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    margin-bottom: 2rem;
}

section h2 {
    margin-bottom: 1rem;
    color: #333;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    color: #555;
}
