/* ============================
   Restaurant Wonder Park CSS - CLEAN & MODERN
   Design épuré et élégant
   Couleurs: #FF006F (primary)
============================ */

/* Variables CSS pour design épuré */
:root {
    --primary: #FF006F;
    --primary-light: #FF4081;
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.2s ease;
}

/* Galerie Restaurant - Design épuré */
.restaurant-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 200px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

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

.restaurant-gallery-item:hover {
    box-shadow: var(--shadow-hover);
}

.restaurant-gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.restaurant-gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5, .gallery-overlay h6 {
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Menu Navigation - Design épuré */
.menu-nav {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid #f0f0f0;
}

.menu-nav .nav-link {
    border-radius: 50px;
    padding: 12px 24px;
    margin: 0 4px;
    color: #6c757d;
    background: transparent;
    border: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
}

.menu-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(255, 0, 111, 0.05);
}

.menu-nav .nav-link.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 111, 0.2);
}

/* Menu Item Cards - Design épuré et moderne */
.menu-item-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 0;
    margin-bottom: 24px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid #f8f9fa;
}

.menu-item-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.menu-item-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item-card:hover .menu-item-img {
    transform: scale(1.02);
}

.menu-item-content {
    padding: 20px;
    position: relative;
}

.menu-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.4;
}

.menu-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 111, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.menu-item-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.menu-item-tags .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition);
}

/* Modern Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

/* Simple animations */
.tab-pane {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-nav {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .menu-nav .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .menu-item-content {
        padding-left: 0;
        padding-top: 15px;
    }
    
    .menu-item-card .row {
        flex-direction: column;
    }
    
    .menu-item-card .col-4,
    .menu-item-card .col-8 {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .menu-item-img {
        height: 150px;
        margin-bottom: 15px;
    }
}

/* Animations */
.tab-pane {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Contact Restaurant */
.restaurant-contact-card {
    background: linear-gradient(135deg, #FF006F 0%, #FF4081 100%);
    border-radius: 20px;
    color: white;
    overflow: hidden;
    position: relative;
}

.restaurant-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.restaurant-contact-card .btn-light {
    background: white;
    color: #FF006F;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.restaurant-contact-card .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.restaurant-contact-card .btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.restaurant-contact-card .btn-outline-light:hover {
    background: white;
    color: #FF006F;
    transform: translateY(-2px);
}
/* Section présentation avec image et bannières */
.restaurant-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
}

.restaurant-features {
    padding-left: 20px;
}

.feature-banner {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature-banner:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.feature-banner:nth-child(1) { border-left-color: #28a745; }
.feature-banner:nth-child(2) { border-left-color: var(--primary); }
.feature-banner:nth-child(3) { border-left-color: #ffc107; }

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

@media (max-width: 768px) {
    .restaurant-features {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .feature-banner {
        padding: 15px;
    }
}
