/* 文化页面样式 */
.culture-banner {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/feiyi.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 工夫茶文化样式 */
.tea-culture {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.tea-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.tea-video {
    flex: 1;
}

.tea-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tea-info {
    flex: 1;
}

.tea-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
}

.step i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* 潮剧艺术样式 */
.opera-art {
    padding: 4rem 0;
}

.opera-showcase {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.opera-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--light-text);
}

.opera-description {
    flex: 1;
}

/* 方言文化样式 */
.dialect-culture {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.dialect-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.dialect-intro {
    flex: 1;
}

.dialect-player {
    margin-top: 2rem;
}

.audio-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audio-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.audio-item span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.audio-item audio {
    width: 100%;
}

.dialect-examples {
    flex: 1;
}

.example-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.example-card li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* 传统节日样式 */
.festivals {
    padding: 4rem 0;
}

.festival-timeline {
    position: relative;
    margin-top: 3rem;
}

.festival-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.festival-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.festival-date {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0 2rem;
}

.festival-content {
    flex: 0 1 500px;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.festival-gallery {
    margin-top: 1rem;
}

.festival-gallery img {
    width: 100%;
    border-radius: 8px;
}

/* 文化传承现状样式 */
.cultural-status {
    margin-top: 4rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cultural-status h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.status-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(30, 136, 229, 0.03);
    border-radius: 8px;
    transition: var(--transition);
}

.status-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.status-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.status-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.status-item p {
    line-height: 1.7;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .tea-content,
    .opera-showcase,
    .dialect-content {
        flex-direction: column;
    }

    .opera-gallery {
        grid-template-columns: 1fr;
    }

    .festival-timeline::before {
        left: 0;
    }

    .festival-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 2rem;
    }

    .festival-date {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .tea-steps {
        grid-template-columns: 1fr;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .cultural-status {
        padding: 1.5rem;
        margin: 0 10px;
        margin-top: 3rem;
    }
}

@media (max-width: 575px) {
    .step,
    .audio-item,
    .example-card {
        margin: 0 10px;
    }
} 
/* 图片容器样式 */
.tea-image-container,
.performance-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 图片样式 */
.tea-image,
.performance-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* 视频链接样式 */
.video-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

/* 播放图标样式 */
.video-link i {
    font-size: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.video-link span {
    vertical-align: middle;
}

/* 鼠标悬停效果 */
.tea-image-container:hover .tea-image,
.performance-image-container:hover .performance-image {
    transform: scale(1.05);
}

.tea-image-container:hover .video-link,
.performance-image-container:hover .video-link {
    transform: translateY(0);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .video-link {
        transform: translateY(0);
        font-size: 14px;
        padding: 10px;
    }
    
    .video-link i {
        font-size: 18px;
    }
}