/* 主体部分样式 */
main {
    padding-top: 100px;
}

/* 文化简介样式 */
.culture-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.culture-intro h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.intro-content p {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* 历史渊源样式 */
.culture-history {
    background-color: #f9f9f9;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.culture-history h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.history-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.history-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.history-item:hover {
    transform: translateY(-5px);
}

.history-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.history-item p {
    line-height: 1.6;
    color: #666;
}

/* 特色工艺样式 */
.culture-craft {
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.culture-craft h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.craft-item:hover {
    transform: translateY(-5px);
}

.craft-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.craft-info {
    padding: 1.5rem;
}

.craft-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.craft-info p {
    color: #666;
    line-height: 1.6;
}

/* 名厨风采样式 */
.culture-chef {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.culture-chef h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.chef-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.chef-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.chef-card:hover {
    transform: translateY(-5px);
}

.chef-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.chef-info {
    padding: 1.5rem;
}

.chef-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.chef-info .title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 1rem;
}

.chef-info .description {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .culture-intro h1 {
        font-size: 2rem;
    }

    .intro-content p {
        margin-top: -30px;
        padding: 1.5rem;
    }

    .history-content,
    .craft-grid,
    .chef-list {
        grid-template-columns: 1fr;
    }

    .history-item,
    .craft-item,
    .chef-card {
        max-width: 400px;
        margin: 0 auto;
    }
} 