/* 英雄区域样式 */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 80%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
}

/* 技艺大师样式 */
.masters-section {
    padding: 50px;
    background: #f9f9f9;
}

.masters-section h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.masters-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41230;
    margin: 15px auto;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.master-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.master-card:hover {
    transform: translateY(-5px);
}

.master-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.master-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.master-card:hover .master-image img {
    transform: scale(1.1);
}

.master-info {
    padding: 20px;
}

.master-info h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 5px;
}

.master-info .title {
    color: #c41230;
    font-size: 16px;
    margin-bottom: 15px;
}

.master-info .description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.achievements span {
    background: #f0f0f0;
    color: #333;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

/* 传承故事样式 */
.stories-section {
    padding: 50px;
}

.stories-section h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.stories-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41230;
    margin: 15px auto;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 20px;
}

.story-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #c41230;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* 传承教育样式 */
.education-section {
    padding: 50px;
    background: #f9f9f9;
}

.education-section h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.education-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41230;
    margin: 15px auto;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.education-text h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.education-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.education-features {
    list-style: none;
    padding: 0;
}

.education-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.education-features li:hover {
    transform: translateX(10px);
}

.education-features img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.feature-content h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.education-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .masters-section,
    .stories-section,
    .education-section {
        padding: 30px 20px;
    }

    .education-content {
        grid-template-columns: 1fr;
    }

    .education-image {
        order: -1;
    }

    .education-image img {
        height: 300px;
    }

    .master-image {
        height: 250px;
    }
} 