@charset "utf-8";
/* CSS Document */
/******************** 基础样式 ********************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    line-height: 1.6;
    padding-top: 80px; 
}

/******************** 高级导航栏样式 ********************/
.nav-container {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #6A0F11; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none; 
}

.nav-item {
    position: relative;
}

/* 导航链接 */
.nav-item > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    color: antiquewhite;
    text-decoration: none;
    transition: color 0.3s;
}

/* 悬停下划线动画 */
.nav-item > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #C72A25; 
    transition: width 0.3s ease-in-out;
}

.nav-item > a:hover {
    color: white;
}

.nav-item > a:hover::after {
    width: 100%;
}

.nav-item.active > a::after {
    width: 100%;
}

/******************** 全屏封面 ********************/
.fengmian {
    height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
        url('../imgs/cover.jpg') no-repeat center/cover; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
}

.fengmian-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.fengmian h1 {
    font-size: 8rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-family: "演示新手书"; /* 保持用户特殊字体 */
}

/******************** 介绍板块样式 ********************/
.intro-section {
	background-color:#FBFCF6;
    
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 标题样式 */
.section-title {
    font-family: var(--font-title);
    color: var(--main-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.icon-scissors {
    margin-right: 1rem;
    transform: rotate(-30deg);
    transition: transform 0.3s ease;
}

.section-title:hover .icon-scissors {
    transform: rotate(0deg);
}

/* 图文布局 */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    line-height: 1.8;
    color: #444;
}

/* 特色列表 */
.feature-list {
    margin-top: 2rem;
    list-style: none;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--main-color);
    width: 1.5rem;
}

/* 图片样式 */
.intro-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.intro-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hover-swap {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


.image-caption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9em;
}
/******************** 分类板块样式 ********************/
.category-section {
    background: #FBFCF6;
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
	margin-top: 60px;
}

.category-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.category-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.category-item h4 {
    color: var(--main-color);
    margin: 1rem 0;
    font-size: 1.3rem;
}

.category-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/******************** 悬停效果 ********************/
.category-item:hover {
    transform: translateY(-5px);
}

.category-image:hover {
    box-shadow: 0 12px 25px rgba(198,40,40,0.2);
    transform: scale(1.05);
}

.category-image:hover img {
    filter: grayscale(0%);
}

/*时间轴 */
.simple-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* 中央竖线 */
.simple-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c62828;
	margin-top:120px;
}

.timeline-item {
    width: 45%;
    margin: 2rem 0;
    position: relative;
}

/* 左右交替 */
.timeline-item.left {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item.right {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content {
    padding: 1.5rem;
    background: #FBFCF6;
    border: 1px solid #eee;
    border-radius: 4px;
	padding: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
/* 在文件末尾添加悬停效果 */
.timeline-content:hover {
    /* 增强阴影 */
    box-shadow: 0 5px 15px rgba(198,40,40,0.15);
    /* 轻微上移效果 */
    transform: translateY(-3px);
    /* 边框颜色变化 */
    border-color: #c62828;
}
/* 现代艺术家卡片样式 */
.artists-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-heading {
    text-align: center;
    font-size: 2.75rem;
    color: #2b2d42;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
    position: relative;
}

.section-heading::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #c62828;
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2.5rem;
}

.artist-card {
    background: #FBFCF6;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.artist-card:hover {
    transform: translateY(-8px);
}

.card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.card-content {
    padding: 2rem;
    position: relative;
}

.meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.era-tag {
    background: #c62828;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links i {
    color: #666;
    margin-left: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: #c62828;
}

.artist-name {
    font-size: 1.8rem;
    color: #2b2d42;
    margin-bottom: 0.5rem;
}

.artist-title {
    color: #c62828;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.achievement-list {
    list-style: none;
}

.achievement-list li {
    padding: 0.8rem 0;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #444;
}

.achievement-list i {
    color: #c62828;
    min-width: 1.2rem;
}

/* 页脚样式 */
.modern-footer {
    background:#6A0F11;
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
    position: relative;
    border-top: 3px solid #c62828;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo-icon {
    font-size: 2.5rem;
    color: #c62828;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c62828;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255,255,255,0.8);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c62828;
}

.copyright-bar {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}
/* 新增样式 */
.culture-panel {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 2rem;
}

.culture-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
	height: 80%;
}

.map-legend {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
	
}

.map-legend span {
    display: block;
    padding: 0.3rem 1rem;
    margin: 0.3rem 0;
    border-radius: 20px;
    font-size: 0.9rem;
	
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.6), 
    rgba(0, 0, 0, 0.3)
  ); /* 渐变遮罩 */
}
.culture-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.stat-card {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #c62828;
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    color: #c62828;
    font-weight: bold;
}
/* 全局平滑滚动 */
html {
    scroll-behavior: smooth; 
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
