/* 南方美食页面样式 */
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;
}

.cuisine-types {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.cuisine-types h2 {
    color: #DE2910;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cuisine-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cuisine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cuisine-header h3 {
    color: #DE2910;
    font-size: 1.5rem;
}

.tag {
    background: #FFD700;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.cuisine-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cuisine-showcase img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-dish {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.featured-dish h2 {
    color: #DE2910;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.dish-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dish-highlight img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.dish-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dish-content h3 {
    color: #DE2910;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dish-details {
    margin-top: 2rem;
}

.dish-details img {
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .dish-highlight {
        grid-template-columns: 1fr;
    }
} 