/* ======================================================================
   PAGE À EMPORTER
====================================================================== */

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
            url('../images/fond-restaurant.jpg');
    margin: 0;
}

.emporter-section {
    max-width: 1600px;
    margin: 150px auto 75px auto; 
    padding: 0 40px;
    min-height: 70vh; 
}

.emporter-single-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-sizing: border-box;
}

/* Les images à l'intérieur du cadre */
.emporter-img {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Animation pour l'effet d'apparition */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

/* ======================================================================
   AJUSTEMENTS RESPONSIVE (Mobiles et tablettes)
====================================================================== */

@media screen and (max-width: 992px) {
    .emporter-single-frame {
        flex-direction: column;
        width: 90%;
        gap: 15px;
        padding: 15px;
    }

    .emporter-section{
        padding: 0 0px;
    }
    
    .emporter-img {
        width: 100%;
    }
}

/* ======================================================================
   ANIMATIONS
====================================================================== */

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