/* =========================
   VIDÉO MAST
   ========================= */

/* Assombrit légèrement la vidéo */
#video_mast, #img_mast{
    filter: brightness(0.7);
}
#after_mast{
    padding-bottom: 5%!important;
}
/* =========================
   SECTION RESTAURANT
   ========================= */

/* Conteneur principal de la section */
#restau{
    width: 100%;
    height:50vh;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 350px;
}

/* Conteneur interne avec colonnes */
#container_restau{
    width: 80%;
    height:100%;
    display: flex;
    gap:1%;
}

/* Texte justifié avec largeur réduite */
.text_justi{
    text-align: justify;
    width: 90%;
}

/* Conteneur image (demi-hauteur) */
.container_img{
    width: 100%;
    height:50%;
}

/* Colonnes latérales (extrémités) */
.extremity{
    width: 20%;
    gap:2%;
    height:100%;
    display: flex;
    flex-direction: column;
}

/* Colonne centrale */
#center_restau{
    width: 80%;
    height:100%;
}

/* Image avec arrondi bas gauche */
#border_bottom{
    overflow: hidden;
    border-bottom-left-radius: 50%;
}

/* =========================
   SECTION TEXTE BAS
   ========================= */

/* Conteneur texte global */
#contianer_text{
    width: 80%;
    height:50%;
    margin-top: 10vh;
    display: flex;
    justify-content: end;
    min-height: 300px;
}

/* Conteneur interne aligné à droite */
#in_container_text{
    width: 80%;
    height:100%;
    display: flex;
    justify-content: end;
}

/* Bloc texte */
.text_cont{
    width: 50%;
    height: 100%;
}

/* Alignement du texte en bas */
#bottom_text, 
.text_in{
    display: flex;
    flex-direction: column;
    justify-content: end;
}

/* Marge haute légère */
.text_margin3{
    margin-top: 5%;
}








/* ≤ 1280px & hauteur ≤ 1024px */
@media (max-width: 1280px) and (max-height: 1024px){
    .sep_footer{
        height:15vh!important;
    }
}



/* =========================
   BREAKPOINT ≤ 1176px
   ========================= */
@media (max-width: 1176px){
    /* Réduction de la hauteur minimale */
    #restau{
        min-height: 300px;
    }
}

/* =========================
   BREAKPOINT ≤ 800px
   ========================= */
@media (max-width: 800px){
    /* Section restaurant plus compacte */
    #restau{
        min-height: 200px;
    }
    .sep_footer{
        height:10vh!important;
    }
}

/* =========================
   BREAKPOINT ≤ 700px (mobile)
   ========================= */
@media (max-width: 700px){

    /* Suppression padding bas côté droit */
    #container_after_mast #right{
        padding-bottom: 0!important;
    }

    /* Section restaurant plus basse */
    #restau{
        height:35vh;
        min-height: 150px;
    }

    /* Conteneur élargi */
    #container_restau{
        width: 90%;
    }

    /* Texte pleine largeur */
    #contianer_text{
        width: 100%;
        min-height: auto;
        padding-bottom: 10%;
    }

    /* Passage en colonne */
    #in_container_text{
        width: 95%;
        flex-direction: column;
    }

    /* Texte sur toute la largeur */
    .text_cont{
        width: 100%;
    }
}
