@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;1,100&display=swap');
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}
.navBar-container{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: transparent;
    align-items: center;
    position: fixed;    
    background-color: rgba(0, 0, 0, 0.5); /* Noir avec une opacité de 0.5 */
    z-index: 1;

    
    
}
.cursor-pointer{
    cursor: pointer;
}

.lien-container{
    display: flex;
    flex-direction: row;
    gap: 83px;

}

.lien-content{
    font-size: 23px;
    color:white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;

}
.lien-content:hover{
    color: #be9662;

}



.lien-content .underline {
    width: 0px;
    height: 3px;
    background-color: white; 
    transition: width 0.3s;
}

.lien-content:hover .underline {
    width: 100%;
}


.logo-content image{
height: 60px;
}

.langage-content{
    font-size: 20px;
    color:white;
    font-weight: 600;
    cursor: pointer;

}
.icone-responsive{
    display: none;
}


.navBar-container-responsive{
    display: none;
}

#close-icon{
    display: none;

}

.arab-content {
    display: none;
}


.navBar-mobile{
  display: none;
  z-index: 1;
}
.list-icon li{
  display: inline-block;
}
@media screen and  (max-width: 490px) {


  .icone-responsive {

    display: none !important;
  }
  .floating-icon{
    display: none !important;
  }
  .floating-icon-message{
    display: none !important;
  }

  .navBar-mobile  {
    display: flex !important;
    position: fixed;
    bottom: 0;
    background-color: #be9662;
    width: 100%;
    left: 0;

    z-index: 1;
    border-top-left-radius: 20px;  
    border-top-right-radius: 20px;
  }
  .list-icon{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding-right: 25px;


  }
  


}

@media screen and  (max-width: 950px){

    
    .icone-responsive{
        display: flex;
        font-size: 2.8rem;
        color: white;
        display: flex;
        z-index: 2;
    }
    .traductAng{
      display:none
    }
    .traductArb{
      display: none;
    }
    
    .lien-container{
        display: none;
    }
    .langage-content{
        display: none;
    }
    .navBar-container{
        justify-content: space-around;
        gap: 301px;
        position: fixed;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: 3;
        position: fixed;

    }

    .navBar-container-responsive{
        display: block;
        position: fixed;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        box-shadow: 0.5rem 1rem rgb(0,0, 0,.1);
        transition: max-height 0.4s ease;
        z-index: 3;
    
    }

    .navBar-container-responsive.active{
        max-height: 1000px;
        margin-top: 4.5rem;
    }



    .lien-container-responsive{
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    }

    @media screen and  (max-width: 414px){
        .navBar-container{
            gap: 10px;
            justify-content: space-between;
        }
       
       
       
      }

