/* 重置基础样式 */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6; /* 调整行高 */
    color: #333;
    background: #f8f9fa; /* 使用浅灰色背景 */
    margin: 0;
    padding: 0;
    min-height: 100vh; /* 确保body至少占满视口高度 */
    display: flex; /* 使用flex布局辅助布局 */
    flex-direction: column;
}

/* 基础框架 */
.layout {
    display: grid;
    grid-template-columns: 240px 1fr; /* 左侧侧边栏固定宽度，右侧内容自适应 */
    grid-template-rows: auto 1fr auto; /* 头部、主内容、底部 */
    min-height: 100vh; /* 最小高度占满视口 */
    grid-template-areas:
        "sidebar header"
        "sidebar main"
        "sidebar footer"; /* 定义网格区域 */
    flex-grow: 1; /* 使布局容器填充剩余空间 */
}

/* 内容容器 */
/* 移除旧的 .container 样式，新布局使用 .main-content */
/*
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
*/

/* 间距系统 */
.section {
    padding: 60px 0;
}

/* 主色调 - 紫色 */
.primary-color {
    color: #8a2be2; /* 紫罗兰色 */
}

.primary-bg {
    background: #8a2be2;
}

/* 辅助色 */
.secondary-color {
    color: #6a5acd; /* 淡紫色 */
}

/* 导航栏优化 */
header {
    grid-area: header; /* 对应 grid-template-areas 中的 header */
    background-color: #ffffff; /* 白色背景 */
    color: #333; /* 深色文字 */
    padding: 20px 40px; /* 内边距 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* 底部阴影 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10; /* 确保在内容上方 */
}

header .logo {
    color: #8a2be2; /* 调整logo颜色为紫色 */
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* 导航项间距 */
}

header nav a {
    color: #333; /* 调整导航链接颜色 */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #8a2be2; /* 悬停颜色为紫色 */
}

/* 侧边栏专业设计 */
.sidebar {
    grid-area: sidebar; /* 对应 grid-template-areas 中的 sidebar */
    background: linear-gradient(145deg, #2c3e50, #34495e); /* 深色渐变背景 */
    color: white; /* 文字颜色 */
    padding: 30px 20px; /* 内边距 */
    box-shadow: 5px 0 15px rgba(0,0,0,0.1); /* 右侧阴影 */
    overflow-y: auto; /* 侧边栏内容过多时滚动 */
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 15px; /* 列表项间距 */
    transition: all 0.3s; /* 过渡动画 */
}

.sidebar-nav li:hover {
    transform: translateX(5px); /* 悬停时向右移动 */
}

.sidebar-nav a {
    color: white;
    text-decoration: none;
    display: block; /* 使链接填充整个列表项 */
    padding: 8px 0;
    font-size: 1.1rem;
}

.sidebar-nav a:hover {
    color: #bdc3c7; /* 悬停颜色变浅 */
}

/* 内容区域美化 */
.main-content {
    grid-area: main; /* 对应 grid-template-areas 中的 main */
    padding: 40px; /* 增加内边距 */
    background: #f8f9fa; /* 浅灰色背景 */
    border-radius: 12px 0 0 0; /* 左上角圆角 */
    box-shadow: inset 0 0 30px rgba(0,0,0,0.03); /* 柔和内阴影 */
    overflow-y: auto; /* 主内容区域滚动 */
}

/* 底部样式调整以适应新布局 */
footer {
    grid-area: footer; /* 对应 grid-template-areas 中的 footer */
    background-color: #ffffff; /* 白色背景 */
    color: #333; /* 深色文字 */
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05); /* 顶部阴影 */
}

.footer-copyright {
    color: #333; /* 版权信息颜色为黑色 */
    font-size: 0.9rem;
}

/* 主标题样式 */
h1 {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #8a2be2; /* 主标题颜色为紫色 */
    margin: 30px 0;
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 600;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #8a2be2; /* 主标题下划线为紫色 */
}

/* 副标题样式 */
h2 {
    text-align: center;
    color: #555;
    margin: 25px 0 15px;
    font-weight: 500;
    font-size: 1.8rem;
}

h3 {
    text-align: center;
    color: #666;
    margin: 20px 0 10px;
    font-weight: 500;
    font-size: 1.4rem;
}


/* 项目网格布局 */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 调整最小宽度 */
    gap: 30px; /* 增加卡片间距 */
    padding: 20px 0; /* 增加上下内边距 */
}

/* 移除旧的 projects-container 样式，因为它使用了 column-count */
/*
.projects-container {
    column-count: 3;
    column-gap: 20px;
}
*/

/* 项目卡片展示优化 */
.project-card {
    background: white;
    border-radius: 10px; /* 更大的圆角 */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* 更平滑的过渡 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* 柔和阴影 */
    display: flex; /* 使用flex布局调整内部元素 */
    flex-direction: column;
    height: 100%; /* 确保卡片高度一致 */
}

.project-card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.15); /* 悬停时阴影加深 */
    transform: translateY(-5px); /* 悬停时向上移动更多 */
}

.project-image {
    width: 100%;
    height: 200px; /* 固定图片高度 */
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片覆盖区域 */
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05); /* 悬停时图片放大 */
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 43, 226, 0.7); /* 紫色半透明遮罩 */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* 默认隐藏 */
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1; /* 悬停时显示 */
}

.view-btn {
    display: inline-block;
    background-color: white; /* 按钮背景为白色 */
    color: #8a2be2; /* 按钮文字为紫色 */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-btn:hover {
    background-color: #f3e5ff; /* 悬停背景变浅 */
    color: #6a5acd; /* 悬停文字变淡 */
}

.project-info {
    padding: 20px;
    flex-grow: 1; /* 使信息区域填充剩余空间 */
}

.project-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    text-align: left; /* 标题左对齐 */
}

.tech-tags {
    margin-top: 10px;
    text-align: left; /* 标签左对齐 */
}

.tech-tags span {
    display: inline-block;
    background-color: #f3e5ff; /* 标签背景为浅紫色 */
    color: #8a2be2; /* 标签文字为紫色 */
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 0.8rem;
}


/* 卡片网格布局增强 (针对首页等页面的小卡片) */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 调整最小宽度 */
    gap: 30px; /* 增加间距 */
    margin: 40px 0; /* 增加上下外边距 */
}

/* 卡片基础样式 */
.card {
    background: white;
    border-left: 5px solid #8a2be2; /* 边框加粗为紫色 */
    border-radius: 8px; /* 圆角 */
    padding: 25px; /* 内边距 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* 阴影 */
    transition: all 0.3s ease;
    display: flex; /* 使用flex布局 */
    flex-direction: column;
    align-items: center; /* 居中内容 */
    text-align: center; /* 文字居中 */
}

.card:hover {
    transform: translateY(-8px); /* 悬停向上移动 */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* 悬停阴影 */
}

/* 卡片图标样式 */
.card-icon {
    font-size: 2.5rem; /* 图标放大 */
    color: #8a2be2; /* 图标颜色为紫色 */
    margin-bottom: 20px; /* 增加间距 */
}

/* 卡片标题样式 */
.card-title {
    color: #333;
    margin-bottom: 15px; /* 增加间距 */
    font-size: 1.3rem; /* 标题字体 */
}

/* 卡片描述样式 */
.card-desc {
    color: #666;
    margin-bottom: 20px; /* 增加间距 */
    line-height: 1.6;
}

/* 卡片链接样式 */
.card-link {
    display: inline-block;
    color: #8a2be2; /* 链接颜色为紫色 */
    text-decoration: none;
    font-weight: bold;
    margin-top: auto; /* 将链接推到底部 */
}

.card-link:hover {
    text-decoration: underline;
}

/* 博客文章列表样式 */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* 调整文章卡片宽度 */
    gap: 30px; /* 增加间距 */
    padding: 20px 0;
}

.blog-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.post-cover {
    width: 100%;
    height: 220px; /* 调整封面高度 */
    object-fit: cover;
}

.post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0;
}

.post-meta span {
    margin-right: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #8a2be2; /* 阅读更多链接为紫色 */
    font-weight: 500;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.read-more:hover {
    text-decoration: underline;
}

/* 项目详情页面样式 */
.project-detail {
    padding: 30px 0;
}

.detail-header {
    margin-bottom: 30px;
    text-align: center;
}

.detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.meta-info {
    color: #666;
    font-size: 1rem;
}

.meta-info span {
    margin-right: 20px;
}

.detail-content {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    gap: 40px; /* 增加间距 */
}

.screenshots {
    flex: 1 1 60%; /* 截图区域占大部分空间 */
    min-width: 300px; /* 最小宽度 */
}

.screenshots img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-section {
    flex: 1 1 30%; /* 信息区域占剩余空间 */
    min-width: 250px; /* 最小宽度 */
}

.detail-section h2 {
    color: #8a2be2; /* 使用紫色 */
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section ul li {
    margin-bottom: 10px;
    color: #555;
}

.detail-section .btn {
    display: inline-block;
    background-color: #8a2be2; /* 按钮背景为紫色 */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.detail-section .btn:hover {
    background-color: #6a5acd; /* 悬停背景变淡 */
}


/* 关于我页面样式 */
.about-me {
    padding: 30px 0;
}

.about-me h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.bio, .skills {
    margin-bottom: 40px;
}

.bio h2, .skills h2 {
    color: #8a2be2; /* 使用紫色 */
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.bio p {
    line-height: 1.8;
    color: #555;
}

.skill-list {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.skill-list li {
    margin-bottom: 8px;
}


/* 大屏字体调整 */
h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .layout {
        grid-template-columns: 1fr; /* 小屏幕下取消侧边栏布局 */
        grid-template-areas:
            "header"
            "main"
            "footer";
    }

    .sidebar {
        display: none; /* 小屏幕下隐藏侧边栏，或者可以设计一个可切换的侧边栏 */
    }

    header {
        padding: 15px 20px;
    }

    .main-content {
        padding: 20px;
        border-radius: 0; /* 移除圆角 */
        box-shadow: none; /* 移除阴影 */
    }

    .projects-grid, .cards-container, .blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* 调整小屏幕下的卡片宽度 */
        gap: 20px;
    }

    .detail-content {
        flex-direction: column; /* 项目详情在小屏幕下堆叠 */
        gap: 20px;
    }

    .screenshots, .detail-section {
        flex: 1 1 100%; /* 占满宽度 */
        min-width: auto;
    }

    .detail-header h1 {
        font-size: 2rem;
    }

    .detail-section h2 {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* 极小屏幕调整 */
@media (max-width: 576px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .main-content {
        padding: 15px;
    }

    .projects-grid, .cards-container, .blog-posts {
        grid-template-columns: 1fr; /* 在极小屏幕下显示为单列 */
        gap: 15px;
    }

    .section {
        padding: 30px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }
}