/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 定义主题颜色 */
:root {
    --primary-gold: #8B4513;
    --primary-red: #8B0000;
    --accent-maroon: #800000;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f5f5f5;
    --texture-pattern: repeating-linear-gradient(
        45deg,
        rgba(139, 69, 19, 0.1) 0px,
        rgba(139, 69, 19, 0.1) 2px,
        transparent 2px,
        transparent 4px
    );
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin: 0 auto;
}

/* 导航栏样式 */
.nav-bar {
    background-color: var(--primary-gold);
    background-image: var(--texture-pattern);
    padding: 1rem 0;
    position: sticky;
    width: 100%;
    min-width: 1480px;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

/* 页面容器 */
.container {
    width: 100%;
    min-width: 1480px;
    margin: 0 auto;
    padding: 2rem 10rem;
    margin-top: 80px;
}

/* 页脚样式 */
.footer {
    background-color: var(--primary-gold);
    background-image: var(--texture-pattern);
    color: var(--text-light);
    padding: 2rem 0;
    margin-top: 3rem;
    width: 100%;
    min-width: 1480px;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2rem;
}

.footer-info {
    text-align: center;
}
