/* 北方美食页面样式 */
main {
    margin-top: 60px;
}

.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero 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);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-dishes {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.featured-dishes h2 {
    color: #DE2910;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dish-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish-info {
    padding: 1.5rem;
}

.dish-info h3 {
    color: #DE2910;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.dish-info p {
    color: #666;
    margin-bottom: 1rem;
}

.making-process {
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.making-process img {
    height: 150px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.making-process p {
    font-size: 0.9rem;
    color: #888;
} 