/* === 1. En-tête === */
#restaurant-header {
    text-align: center;
    color: #141313;
    background-color: #f9f9f9; /* Fond doré élégant */
    padding: 60px 20px;
}

#restaurant-header h1 {
    font-size: 2.5rem;
}

#restaurant-header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* === 2. Présentation === */
#restaurant-presentation {
    padding: 60px 20px;
    text-align: center;
}

#restaurant-presentation h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.restaurant-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.restaurant-images img {
    width: 100%;
    height: 250px;              /* Hauteur uniforme */
    object-fit: cover;          /* Recadrage élégant */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


/* === 3. Services === */
#restaurant-services {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#restaurant-services h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    width: 45%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-item img {
    width: 100%;
    border-radius: 8px;
}

.service-item:hover {
    transform: scale(1.05);
}

/* === 4. Galerie === */
#restaurant-gallery {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

#restaurant-gallery h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-grid img {
    width: 22%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

/* === 5. Responsive === */
@media (max-width: 1024px) {
    .service-item {
        width: 90%;
    }

    .gallery-grid img {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .restaurant-images {
        flex-direction: column;
    }

    .restaurant-images img {
        width: 100%;
    }

    .services-grid {
        flex-direction: column;
    }

    .gallery-grid img {
        width: 100%;
    }
}
