/* 文化瑰宝页面样式 */
main {
    overflow-x: hidden;
}

.culture-section {
    padding: 80px 0;
    position: relative;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.culture-section h2 {
    color: #CC0000;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.culture-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFD700;
}

/* 视差滚动效果 */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.poetry {
    background-image: url('../images/poetry-bg.png');
}

.arts {
    background-image: url('../images/arts-bg.png');
}

.architecture {
    background-image: url('../images/architecture-bg.png');
}

.food {
    background-image: url('../images/food-bg.png');
}

/* 诗词歌赋板块 */
.poetry-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.poetry-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.poetry-item:hover {
    transform: translateY(-5px);
}

.poetry-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.poetry-text {
    padding: 20px;
}

.poetry-text h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.poetry-text p {
    color: #666;
    line-height: 1.8;
}

/* 琴棋书画板块 */
.arts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.art-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.art-item:hover {
    transform: translateY(-5px);
}

.art-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.art-item h3 {
    padding: 15px;
    color: #333;
    font-size: 24px;
}

.art-item p {
    padding: 0 15px 15px;
    color: #666;
    line-height: 1.6;
}

/* 建筑园林板块 */
.architecture-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.architecture-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.architecture-item:hover {
    transform: translateY(-5px);
}

.architecture-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.architecture-text {
    padding: 20px;
}

.architecture-text h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.architecture-text p {
    color: #666;
    line-height: 1.8;
}

/* 饮食文化板块 */
.food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.food-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.food-item:hover {
    transform: translateY(-5px);
}

.food-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.food-item h3 {
    padding: 15px;
    color: #333;
    font-size: 24px;
}

.food-item p {
    padding: 0 15px 15px;
    color: #666;
    line-height: 1.6;
} 