/* 极简香槟色调主题 */
:root {
    --champagne: #F7E7CE;
    --champagne-dark: #E5D5B8;
    --champagne-light: #FFF4E0;
    --accent: #C0A080;
    --text: #5A4A42;
    --text-light: #8B7D76;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--champagne-light);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 极简头部 */
header {
    background-color: var(--champagne);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--champagne-dark);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: -1px;
    font-weight: 300;
    color: var(--text);
}

.logo span {
    font-weight: 400;
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

nav ul li a:hover {
    border-bottom-color: var(--accent);
}

/* 主要内容区 */
.main-content {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 1px;
    background-color: var(--accent);
}

/* 极简文章网格 */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.article-card {
    background-color: white;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--champagne-dark);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

/* 分类标签 */
.category-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
    background-color: var(--champagne);
    color: var(--text);
    margin-bottom: 1rem;
}

/* 文章详情 */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* 极简分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination a {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--champagne-dark);
    color: var(--text-light);
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* 友情链接 */
.friend-links {
    margin: 3rem 0;
}

.friend-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.friend-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.friend-links-container a {
    padding: 0.5rem 1rem;
    border: 1px solid var(--champagne-dark);
    font-size: 0.85rem;
}

.friend-links-container a:hover {
    border-color: var(--accent);
}

/* 极简页脚 */
footer {
    background-color: var(--champagne);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--champagne-dark);
    margin-top: 3rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}