/* 西部美食页面样式 */
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;
}

section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

h2 {
    color: #DE2910;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.cuisine-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cuisine-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cuisine-item.featured {
    position: relative;
}

.cuisine-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cuisine-info {
    padding: 1.5rem;
}

.cuisine-info h3 {
    color: #DE2910;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.spice-level {
    margin-top: 1rem;
}

.spice-icon {
    color: #DE2910;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.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;
}

.ethnic-food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ethnic-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ethnic-card:hover {
    transform: translateY(-5px);
}

.ethnic-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ethnic-info {
    padding: 1.5rem;
}

.ethnic-info h3 {
    color: #DE2910;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.street-food-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.street-food-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.street-food-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-details {
    padding: 1.5rem;
}

.food-details h3 {
    color: #DE2910;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.food-details p {
    color: #666;
}

@media (max-width: 768px) {
    .cuisine-showcase,
    .ethnic-food-grid,
    .street-food-container {
        grid-template-columns: 1fr;
    }
} 