/* Styles pour les menus en vedette */

.featured-category {
    width: 100%;
    padding: 60px 0;
    position: relative;
    margin-bottom: 30px;
}

/* Styles pour les différentes catégories */
.featured-category.burgers {
    background-color: #f9f9f9;
}

.featured-category.chicken {
    background-color: #fff;
}

.featured-category.indian {
    background-color: #f9f9f9;
}

.featured-category-header {
    text-align: center;
    margin-bottom: 40px;
}

.featured-category-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.featured-category-header .separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 15px;
}

.featured-category-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.featured-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .featured-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-menu-grid {
        grid-template-columns: 1fr;
    }
}

.featured-menu-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.featured-menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.featured-menu-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.featured-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-menu-item:hover .featured-menu-img img {
    transform: scale(1.1);
}

.featured-menu-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.featured-menu-content {
    padding: 25px;
    text-align: center;
}

.featured-menu-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.featured-menu-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 60px;
}

.order-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Animation pour les nouveaux items - SUPPRIMÉE */

/* Style pour la bannière de découverte */
.discovery-banner {
    background-color: white;
    border-radius: 15px;
    margin: 40px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.discovery-img {
    flex: 0 0 55%;
    height: 250px;
    overflow: hidden;
}

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

.discovery-content {
    flex: 0 0 45%;
    padding: 25px 30px;
    color: white;
    background-color: #1e6f50;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discovery-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.discovery-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.discovery-price {
    font-size: 32px;
    font-weight: 700;
    color: #e6b325;
    margin-top: 15px;
    margin-bottom: 5px;
    display: block;
}

@media (max-width: 768px) {
    .discovery-banner {
        flex-direction: column;
    }
    
    .discovery-img, .discovery-content {
        flex: 0 0 100%;
    }
    
    .discovery-img {
        height: 200px;
    }
}
