/*
 * 特色美食页面样式 - 湘中明珠·魅力邵阳旅游网站
 * 作者：[刘稳]
 * 日期：[2025-06-10]
 * 描述：特色美食页面的专用样式
 */

/* 美食页面顶部横幅 */
.page-banner {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/syms.jpg');
    background-size: 100% 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

/* 美食简介区块样式 */
.cuisine-intro {
    padding: 80px 50px;
    background-color: var(--light-color);
}

.cuisine-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cuisine-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 特色菜品区块样式 */
.featured-dishes {
    padding: 80px 50px;
    background-color: white;
}

/* 菜品卡片网格布局 */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 菜品卡片样式 */
.dish-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    /* 菜品卡片样式  */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 菜品图片 */
.dish-img {
    height: 250px;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-img img {
    transform: scale(1.05);
}

/* 菜品内容 */
.dish-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dish-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
    text-align: center;
}

.dish-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    flex: 1;
}

/* 菜品价格和推荐等级 */
.dish-info {
    border-top: 1px dashed #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-light);
    margin-top: auto;
}

/* 推荐餐厅区块 */
.local-restaurants {
    padding: 80px 50px;
    background-color: var(--light-color);
}

/* 餐厅列表网格布局 */
.restaurant-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 餐厅条目样式 */
.restaurant-item {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.restaurant-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 餐厅图片 */
.restaurant-img {
    flex: 1;
    min-width: 180px;
}

.restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 餐厅内容 */
.restaurant-content {
    flex: 2;
    padding: 20px;
}

.restaurant-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* 餐厅地址 */
.restaurant-content .address {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.restaurant-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

/* 餐厅评分 */
.rating {
    margin-top: 10px;
    color: #f39c12; /* 星级颜色：黄色 */
}

/* 响应式布局调整 */
@media (max-width: 992px) {
    .dish-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .restaurant-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dish-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-item {
        flex-direction: column;
    }
    
    .restaurant-img {
        height: 200px;
    }
} 