/* style.css - 风格一：极简主义与高对比度 */

/* 全局设置 */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff; /* 纯白色背景 */
    color: #1a1a1a; /* 深黑色文字 */
    line-height: 1.6;
}

/* 头部和导航 */
header {
    border-bottom: 2px solid #e0e0e0 !important; /* 更明显的底部分割线 */
}

.blog-header-logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000000 !important;
}

a.blog-header-logo {
    text-decoration: none  !important;
    border: none  !important;
}

.nav-scroller {
    border-bottom: 1px solid #e0e0e0 !important;
    margin-bottom: 2rem !important;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 0.5rem !important;
}

.nav-link.active {
    /* 激活状态使用黑色下划线 */
    border-bottom: 3px solid #000000 !important;
    color: #000000 !important;
}

/* 内容卡片 */
.card.shadow-sm {
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    transition: box-shadow 0.3s ease;
}

.card.shadow-sm:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
}

/* 友情链接（底部的链接区域） */
a {
    color: #333333;
    text-decoration: none;
    padding: 0.2rem 0;
    border-bottom: 1px dashed #333333;
    transition: color 0.2s;
}

a:hover {
    color: #007bff; /* 鼠标悬停时略微突出 */
}

/* 页脚 */
footer {
    background-color: #f8f8f8 !important;
    border-top: 1px solid #e0e0e0;
    color: #666666 !important;
    margin-top: 3rem;
}