/* RESET GLOBALE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: "Calibri", sans-serif;
}

html {
    font-size: 62.5%; /* Facilite l'utilisation des rem */
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #000000;
}

/*MENTION*/

.main_mention {
    max-width: 100rem;
    margin: 15rem auto;
}

main.main_mention h1 {
    font-size: 4.5rem;
    font-weight: 750;
    text-align: center;
}

main.main_mention h2 {
    font-size: 3.5rem;
    font-weight: 750;
    text-align: center;
}

main.main_mention p {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 4rem;
}

main.main_mention li {
    font-size: 1.8rem;
    font-weight: 500;
}

/*Acceuil et Nav*/

/* HEADER */
header {
    position: fixed;
    background-color: #cccccc;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 18%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    color: #7b5db9;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.logo img {
    margin-left: 0;
    width: auto;
    height: 7rem;
}

.logo:hover {
    transform: scale(1.1);
}

.nav_bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 9%;
}

nav a {
    font-size: 2rem;
    color: #222222;
    margin-left: 4rem;
    font-weight: 900;
    transition: 0.3s ease;
    border-bottom: 0.3rem solid transparent;
}

nav a:hover,
nav a.active {
    color: #313131;
    border-bottom: 0.3rem solid #313131;
    transform: scale(1.1);
}

.logout-icon i {
    font-size: 3rem;
    color: #222222;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logout-icon i:hover {
    color: #313131;
    transform: scale(1.1);
}

/* Style pour le bouton menu burger */
.menu-toggle {
    padding: 2.5rem 5%;
    display: none;
    background-color: transparent;
    font-size: 2.5rem;
    color: #222222;
    cursor: pointer;
    z-index: 101; /* Doit être au-dessus du nav */
}

/* Style du menu en écran complet avec fond flou */
@media (max-width: 995px) {
    .menu-toggle {
        display: block; /* Afficher le bouton menu burger */
        position: absolute;
        top: 1rem;
        right: 3rem;
    }

    nav {
        
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        background-color: rgba(0, 0, 0, 0.6); /* Fond noir transparent */
        backdrop-filter: blur(10px); /* Applique un flou à l'arrière-plan */
        z-index: 100;
        transition: opacity 0.5s ease, transform 0.5s ease;
        opacity: 0;
        transform: translateY(-100%);
    }

    nav.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        padding:25%;
    }

    nav a {
        display: block;
        font-size: 3rem;
        margin: 2rem 0;
        color: #fff; /* Texte en blanc */
        transition: color 0.3s ease;
    }

    nav a:hover,
    nav a.active {
        color: #222222; /* Couleur violette au survol */
    }
}


/*FOOTER*/

footer {
    background-color: transparent;
    padding: 4rem 20%;
    color: #222222;
    font-family: 'Open Sans', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-nav {
    display: flex;
}

.footer-nav ul {
    list-style: none;
    margin-right: 4rem;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a {
    color: #222222;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #7b5db9;
}

.footer-info {
    text-align: left;
}

.footer-info h3 {
    color: #7b5db9;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-info ul {
    list-style: none;
    padding: 0;
}

.footer-info ul li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-info ul li i {
    margin-right: 1rem;
    color: #7b5db9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
        flex-direction: column;
        margin-left: 3rem;
    }

    .footer-info {
        text-align: center;
    }
}

/*nouvelle_du_mois*/

.nouvelle_du_mois {
    margin-top: 10rem;
    padding: 3rem 18%;
    background-color: transparent;
}

.titre_nouvelle {
    font-size: 5rem;
    font-weight: 750;
    text-align: center;
}

.article {
    display: flex;
}

.img_article {
    border-radius: 50%;
    height: 40rem;
    width: 40rem;
    margin: 4rem;
}

.titre_article {
    font-size: 3.5rem;
    font-weight: 650;
    margin: 4rem;
    margin-top: 10rem;
}

.texte_article {
    font-size: 2rem;
    font-weight: 500;
    margin: 4rem;
}

.btn_article {
    padding: 1rem 3rem;
    border-radius: 3rem;
    font-size: 2rem;
    letter-spacing: 0.3rem;
    font-weight: 600;
    background-color: #cccccc;
    color: #222222;
    border: 0.2rem solid #222222;
    display: flex;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    margin: 4rem;
    width: 20.7rem;
}

.btn_article:hover {
    background-color: #cccccc;
    color: #313131;
    transform: scale(1.03);
    box-shadow: 0 0 2.5rem #313131;
}

.video_mois {
    margin-top: 10rem;
}

.titre_video {
    font-size: 3.5rem;
    font-weight: 650;
    margin-top: 10rem;
    margin-bottom: 2rem;
    margin-left: 25%;
}

.video {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    height: auto;
    margin: auto;
    margin-left: 25%;
}

.titre_image {
    font-size: 3.5rem;
    font-weight: 650;
    margin-top: 10rem;
    margin-bottom: 2rem;
    margin-left: 0;
}

.image_mois {
    display: flex;
}

.img_image1 {
    height: 60rem;
    width: 30rem;
    margin-right: 2rem;
}

.img_image2 {
    height: 29rem;
    width: 30rem;
    margin-bottom: 2rem;
    margin-right: 2rem;
}

.img_image3 {
    margin-left: -32rem;
    margin-top: 31rem;
    height: 29rem;
    width: 30rem;
    margin-right: 2rem;
}

.img_image4 {
    height: 29rem;
    width: 30rem;
    margin-bottom: 2rem;
}

.img_image5 {
    height: 29rem;
    width: 62rem;
    margin-bottom: 2rem;
    margin-left: -30rem;
    margin-top: 31rem;
}

.img_image6 {
    height: 29rem;
    width: 30rem;
    margin-left: -30rem;
}

.entreprise {
    margin-top: 5rem;
    margin-bottom: 10rem;
    padding: 3rem 18%;
    background-color: transparent;
}

.entre_img {
    margin-top: 10rem;
    display: flex;
    justify-content: space-around;
}

.logo_entre {
    width: auto;
    height: 30rem;
}

/*Nos Produits*/

.produit_bref {
    margin-top: 10rem;
    padding: 3rem 18%;
    background-color: transparent;
    font-size: 2rem;
}

.produit_div {
    display: flex;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.titre_entre {
    font-size: 3.5rem;
    font-weight: 650;
    margin: 4rem;
    text-align: center;
}

.text_produit {
    font-size: 2rem;
    font-weight: 500;
    margin: 4rem;
    text-align: center;
}

.plus_info {
    font-size: 2rem;
    font-weight: 750;
    text-align: center;
    margin-top: -1.5rem;
}

.logo_produits {
    width: auto;
    height: 40rem;
    margin: 4rem;
}

/*Histoire*/

.section_commercial {
    margin-top: 10rem;
    padding: 3rem 18%;
}

.commercial-container {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 4rem;
    background-color: transparent;
}

.img_commercial {
    width: 100%;
    max-width: 40rem;
    height: auto;
    object-fit: cover;
    border-radius: 0.8rem;
}

.commercial-text {
    flex: 1;
    font-size: 2rem;
    font-weight: 500;
    margin: 4rem;
}

.section_histoire {
    margin-top: 2rem;
    padding: 3rem 18%;
}

/* SECTION CONTACT */

/* Container principal pour la section de contact */
#contact {
    padding: 5rem 18%;
    background-color: #f9f9f9;
    margin-top: 10rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* Texte sous le formulaire */
.para_form {
    font-size: 2rem;
    color: #222;
    text-align: center;
    margin-bottom: 3rem;
}

/* Style du formulaire */
.order-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-form form {
    width: 100%;
    max-width: 60rem;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.order-form label {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
    display: block;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    border: 0.1rem solid #dddddd;
    border-radius: 0.4rem;
    box-shadow: inset 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
}

.order-form input:focus,
.order-form textarea:focus {
    border-color: #7b5db9;
    outline: none;
}

.order-form textarea {
    height: 15rem;
    resize: vertical;
}

.order-form button {
    padding: 1.2rem 3rem;
    font-size: 2rem;
    font-weight: 600;
    background-color: #7b5db9;
    color: #ffffff;
    border-radius: 0.4rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.order-form button:hover {
    background-color: #5a3e8b;
    transform: scale(1.05);
}

/* Pop-up de confirmation */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    padding: 3rem;
    z-index: 200;
    text-align: center;
}

.popup p {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.popup button {
    padding: 1rem 2rem;
    font-size: 1.6rem;
    background-color: #7b5db9;
    color: #ffffff;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
}

.popup button:hover {
    background-color: #5a3e8b;
}

/*Pages produits*/

/* SECTION BRASSERIE */
.brasserie-section {
    display: flex;
    justify-content: space-between;
    padding: 3rem 18%;
    margin-top: 10rem;
    margin-bottom: 3rem;
    background-color: transparent;
}

.brasserie-photo img {
    width: 50rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.brasserie-text {
    font-size: 2rem;
    color: #313131;
    padding: 2rem;
}

/* FORMULAIRE DE COMMANDE */
/* CSS d'origine */
form {
    margin-top: 3rem;
    padding: 2rem 18%;
    background-color: transparent;
    border-radius: 0.8rem;
}

form h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.email_nom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.email_nom label {
    font-size: 1.6rem;
    font-weight: bold;
}

.email_nom input {
    padding: 1rem;
    font-size: 1.6rem;
    width: 45%;
    border: 0.1rem solid #ccc;
    border-radius: 0.4rem;
}

.product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.product2 {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-direction: row;
}

.product2 input[type="number"] {
    padding: 0.5rem;
    font-size: 1.6rem;
    width: 10%;
    text-align: center;
    border-radius: 0.4rem;
    border: 0.1rem solid #ccc;
    /* margin-right: 8rem; */
    margin-left: 20rem;
}

.product2 input[type="text"] {
    width: 40%;
    padding: 0.5rem;
    font-size: 1.6rem;
    border: none;
    background-color: transparent;
    color: #333;
    margin-right:2rem;
   
}

.product2 span {
    font-size: 1.6rem;
    font-weight: bold;
}

.prix_obj2{
    margin-right:-5rem;
    width:5rem;
}

.product img {
    width: 30rem;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.8rem;
}

.product input[type="text"] {
    width: 30%;
    padding: 0.5rem;
    font-size: 1.6rem;
    border: none;
    background-color: transparent;
    color: #333;
   
}

.product span {
    font-size: 1.6rem;
    font-weight: bold;
    margin-left:10rem;
}

.product input[type="number"] {
    padding: 0.5rem;
    font-size: 1.6rem;
    width: 10%;
    text-align: center;
    border-radius: 0.4rem;
    border: 0.1rem solid #ccc;
    margin-right:8rem;
}

.prix_obj{
    margin-right:-10rem;
}

.input_long {
        margin-right:4rem;
}
    
/* TOTAL SECTION */
.total-section {
    margin-top: 2rem;
    font-size: 2rem;
    text-align: right;
    padding-right: 10%;
}

/* SUBMIT SECTION */
.submit-section {
    text-align: center;
    margin-top: 2rem;
}

.submit-section button {
    background-color: #7b5db9;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-section button:hover {
    background-color: #5a3e8b;
}

/* Media queries */
@media (max-width: 400px) {
    
    .product-details input[type="text"] {
        flex: 1;
        margin-left: 30%;
        width: 10rem;
        
    }
    
    .product span {
        font-size: 1.4rem;
        margin-left: 0rem;
    }
    
    
    .product-details input[type="text"] {
        flex: 1;
        margin-right: 0rem;
        margin-left: -0.5rem;
        width: 10rem;
    }
}
/* Pour les écrans de 700px et moins */
@media (max-width: 700px) {
    form {
        padding: 1.5rem 5%; /* Réduit le padding pour petits écrans */
    }

    form h1 {
        font-size: 2.5rem; /* Réduction de la taille du titre */
    }

    .email_nom {
        display: block; /* Empile les champs */
        margin-bottom: 2rem;
    }

    .email_nom input {
        width: 100%; /* Prend toute la largeur */
        margin-bottom: 1rem;
    }

    .product {
        display: block; /* Les éléments du produit sont empilés */
        margin-bottom: 2rem;
    }

    .product img {
        max-width:350px;
        height: auto; /* Conserve le ratio de l'image */
        margin-bottom: 1rem;
        display: block;
        margin: 0 auto;
    }

    .product-details {
        display: flex;
        align-items: center; /* Aligne verticalement les éléments */
        justify-content: space-between; /* Crée de l'espace entre les éléments */
        flex-wrap: wrap; /* Pour gérer les petits écrans */
        margin-bottom: 1rem;
    }

    .product-details input[type="text"] {
        flex: 1; /* Prend de la place disponible */
        margin-right: 0rem;
        width: 10rem;
    }
    

    .prix_obj {
        width: 70px; /* Largeur définie pour le champ de prix */
        text-align: right; /* Aligner le texte à droite */
        margin-left: -6.5rem;
    }

    .product-details span {
        white-space: nowrap; /* Empêche le texte de se briser en plusieurs lignes */
        font-size: 1.4rem;
    }

    .product input[type="number"] {
        width: 100%; /* Le champ quantité prend toute la largeur */
        margin: 0 auto;
        margin-bottom: 1rem;
    }

    .total-section {
        font-size: 1.6rem; /* Ajustement de la taille du texte */
        padding-right: 5%; /* Réduction du padding droit */
    }

    .submit-section button {
        font-size: 1.6rem; /* Réduction de la taille du bouton */
    }
}



/* Pour les écrans entre 700px et 1000px */
@media (min-width: 700px) and (max-width: 1000px) {
    form {
        padding: 2rem 8%; /* Ajuste le padding pour ces écrans */
    }

    .email_nom {
        display: flex;
        justify-content: space-between;
    }

    .email_nom input {
        width: 48%; /* Ajustement des champs email/nom */
    }

    .product {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .product img {
        width: 22rem; /* Réduction des images */
        height: 12rem;
    }
    
    .product-details {
        display: flex;
        align-items: center; /* Aligne verticalement les éléments */
        justify-content: space-between; /* Crée de l'espace entre les éléments */
        flex-wrap: wrap; /* Pour gérer les petits écrans */
        margin-bottom: 1rem;
    }

    .product-details input[type="text"] {
        flex: 1; /* Prend de la place disponible */
        margin-right: 0rem;
        width: 14rem;
    }

    .prix_obj {
        width: 70px; /* Largeur définie pour le champ de prix */
        text-align: right; /* Aligner le texte à droite */
        margin-left: -6.5rem;
    }

    .product-details span {
        white-space: nowrap; /* Empêche le texte de se briser en plusieurs lignes */
        font-size: 1.4rem;
    }

    

   .product input[type="number"] {
        width: 15%; /* Le champ quantité est légèrement élargi */
    }

    .total-section {
        font-size: 1.8rem; /* Ajustement de la taille du texte */
    }
    
    .product span {
        font-size: 1.6rem;
        font-weight: bold;
        margin-left:1rem;
    }
}

/* Pour les écrans entre 1000px et 1400px */
@media (min-width: 1000px) and (max-width: 1400px) {
    form {
        padding: 2rem 12%; /* Augmente légèrement le padding */
    }

    .email_nom input {
        width: 45%; /* Ajustement des champs email/nom */
    }

    .product img {
        width: 28rem; /* Réduction légère de la taille des images */
        height: 18rem;
    }

    .product input[type="text"] {
        width: 35%; /* Taille du champ texte du produit */
        margin-left: 20px;
    }

    .product input[type="number"] {
        width: 12%; /* Champ quantité légèrement plus large */
    }

    .total-section {
        padding-right: 8%; /* Réduction du padding à droite */
    }
    
    .product span {
        font-size: 1.6rem;
        font-weight: bold;
        margin-left:4rem;
    }
    
    
    .prix_obj {
        margin-right: -6.5rem;
    }
    
}



/* Pour les écrans de plus de 1400px */
@media (min-width: 1400px) {
    form {
        padding: 2rem 18%; /* Retour aux valeurs d'origine */
    }

    .product img {
        width: 30rem; /* Taille d'image d'origine */
        height: 20rem;
    }

    .product input[type="text"] {
        width: 30%; /* Champ texte d'origine */
    }

    .product input[type="number"] {
        width: 10%; /* Taille d'origine pour les quantités */
    }
}


@media (max-width: 1600px) {
    .img_article {
        max-width: 30rem; /* Ajuster pour les écrans plus petits */
        height:auto;
        margin: 2rem;
    }

    .logo_entre {
        max-width: 25rem; /* Ajuster la taille des logos pour les petits écrans */
        height:auto;
    }

    .img_image1, .img_image2, .img_image3, .img_image4, .img_image5, .img_image6 {
        max-width: 100%; /* S'adapte complètement à la largeur de l'écran sur les petits appareils */
        margin: 0.5rem; /* Réduire les marges pour optimiser l'espace */
    }
    
    .text_produit{
        font-size: 1.7rem;
        margin: 2rem;
    }
    
    .plus_info{
        font-size: 1.7rem;
    }
    
    .titre_entre {
    font-size: 2.7rem;
    margin-bottom: 2rem;
    }
    
    .img_commercial {
    width: auto;
    max-width: 50rem;
    height: auto;
    
    }
    
    .commercial-text {
    font-size: 1.8rem;
    }
    
    .brasserie-section {
    padding: 3rem 18%;
    }
    .brasserie-text {
    font-size: 1.65rem;
    color: #313131;
    padding: 1.6rem;
    max-height: 500px;
    }
}

@media (max-width: 1400px) {
    .produit_bref {
    margin-top: 10rem;
    padding: 3rem 9%;
    }
    .brasserie-section {
    padding: 3rem 9%;
    }
    .section_commercial {
    margin-top: 10rem;
    padding: 3rem 9%;
    }
    .section_histoire {
    margin-top: 10rem;
    padding: 3rem 9%;
    }
    
    .brasserie-photo img {
    width: 40rem;
    }
    
     .brasserie-text {
        padding: 1.4rem;
        font-size: 1.65rem;
     }
}

@media (max-width: 1200px) {
    
    header {
    padding: 1rem 5%;
    
    }
    .produit_bref {
    margin-top: 10rem;
    padding: 3rem 5%;
    }
    
    .section_commercial {
    margin-top: 10rem;
    padding: 3rem 5%;
    }
    
    .section_histoire {
    margin-top: 10rem;
    padding: 3rem 5%;
    }
    
    .img_commercial {
    width: 35rem;
    max-width: 35rem;
    height: auto;
    
    }
    
    .logo_produits {
    width: auto;
    height: 30rem;
    }
    
    .text_produit{
        font-size: 1.5rem;
        margin: 2rem;
    }
    
    .plus_info{
        font-size: 1.5rem;
    }
    
    .titre_entre {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    }
    
    .img_commercial {
    width: 40rem;
    height: auto;
    
    }
    
    .commercial-text {
    font-size: 1.5rem;
    }
    
    .titre_video{
        font-size:2.5rem;
    }
    
    .brasserie-text {
        padding: 0.5rem;
        padding-left:1.5rem;
        font-size: 1.45rem;
     }
}


@media (max-width: 900px) {
    .text_produit{
        font-size: 1.3rem;
        margin: 2rem;
    }
    
    .plus_info{
        font-size: 1.3rem;
    }
    
    .titre_entre {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    }
    
    .img_commercial {
    width: 22.5rem;
    height: auto;
    
    }
    
    .commercial-text {
    font-size: 1.3rem;
    }
    
    .brasserie-section {
    display: flex;
    padding: 3rem 5%;
    margin-top: 10rem;
    margin-bottom: 3rem;
    background-color: transparent;
    flex-direction: column;
    align-items: center;
}

    .brasserie-text {
        padding: 0.5rem;
        padding-left: 1.5rem;
        font-size: 1.45rem;
        margin-top:2rem;
    }
    
    .brasserie-photo img {
    width: 30rem;
    }
}


@media (max-width: 700px) {
    .entre_img{
        margin-top: 10rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 2rem;
    }
    
    .logo_entre {
        max-width: 25rem;
        height: auto;
        margin: 2rem;
    }

    
    .titre_video {
        font-size: 1.8rem;
        font-weight: 400;
        margin-left: 0%;
        text-align: center;
        margin-top: 5rem;
    }
    
    .titre_nouvelle {
        font-size: 3rem;
        font-weight: 750;
        text-align: center;
    }
    
    .video{
        width: 100%;
        height: auto;
        margin: auto;
    }
    
    .produit_bref {
        margin-top: 10rem;
        padding: 3rem 5%;
        display: flex;
        flex-direction: column;
        align-content: center;
    }
    
    .logo_produits {
        width: auto;
        height: 25rem;
    }
    
    .produit_div {
    display: flex;
    margin-bottom: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    }
    
    .produit_div#produit_2{
        display: flex;
        margin-bottom: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
    }
    .titre_entre {
        font-size: 2.2rem;
        margin: 2rem;
        
    }
    
    .commercial-container {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0rem;
    background-color: transparent;
    flex-direction: column;
    align-items: center;
}

.brasserie-text {
        padding: 0.5rem;
        padding-left: 0rem;
        font-size: 1.25rem;
        margin:2rem;
    }

}

