html {
    scroll-behavior: smooth;
}

body {
    background-image: url("../images/background.png");
    margin: 0;
    padding-top: 0;
    width: 100%;
    height: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 10;
    vertical-align: middle;
}

#logo-container img {
    height: 40px; /* Ajuste la taille du logo */
}

#navbar {
    display: flex;
    margin-left: 2%;
    width: 100%;
    vertical-align: middle;
    align-items: center;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    vertical-align: middle;
}

#navbar li {
    margin: 0 15px;
    vertical-align: middle;
}

#navbar a {
    color: Black;
    font-weight: bold;
    text-decoration: none;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    transition: color 0.3s;
    vertical-align: middle;
}

#navbar a:hover {
    color: #C6CA18; /* Jaune lors du survol */
}

#language-selector {
    margin-left: auto; /* Pousse le sélecteur à droite */
    margin-right: 3%;
}

#language-dropdown {
    padding: 8px 15px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    background-color: #f1f1f1; /* Fond clair */
    border: 2px solid #ccc; /* Bordure grise */
    border-radius: 5px; /* Coins arrondis */
    transition: all 0.3s ease-in-out; /* Animation douce */
    outline: none; /* Supprime la bordure par défaut au focus */
}

#language-dropdown:focus {
    border-color: #C6CA18; /* Changement de couleur de bordure au focus */
    box-shadow: 0 0 5px rgba(198, 202, 24, 0.8); /* Ombre autour au focus */
}

#language-dropdown option {
    padding: 8px;
    font-size: 16px;
    background-color: #fff;
    color: #333; /* Texte foncé pour les options */
}

#language-dropdown option:hover {
    background-color: #f0f0f0; /* Fond légèrement gris lors du survol */
}


#language-selector > label{
  font-weight: bold;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}





/* Autres styles pour le contenu */
#container-logo-vybees {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 100px;
}

#logo-vybees {
    width: 100%;
    height: auto;
}

#container-wip {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
}

#container-wip > p {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    font-family: Roboto;
}

#container-business-inquieries {
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 30px;
}

#container-business-inquieries > p {
    text-align: center;
    font-family: Roboto;
    font-size: 22px;
}

#container-business-inquieries > p > a {
    font-weight: bold;
    color: black;
    transition: all .2s ease-in-out;
}

#container-business-inquieries > p > a:hover {
    font-weight: bold;
    color: #C6CA18;
}

#bottom-copyright {
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 150px;
}

#bottom-copyright > p {
    text-align: center;
    font-family: Roboto;
}

/* Ellipsis */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    margin-left: 47.5%;
    margin-right: 47.5%;
    width: 5%;
    height: 80px;
    text-align: center;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: black;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}



.flag{
  width: 7%;
  height: auto;
  vertical-align: middle;
}




/* Responsive 1000px */

@media(max-width: 700px){

  #container-logo-vybees{
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 120px;
  }

  #logo-vybees{
    width: 100%;
    height: auto;
  }

  .lds-ellipsis {
    margin-left: 43.5%;
    margin-right: 43.5%;
    width: 13%;
    height: 80px;
  }

  #bottom-copyright{
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 150px;
  }

  #container-business-inquieries{
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 30px;
  }

}


/* Responsive 500px */

@media(max-width: 500px){

  #container-logo-vybees{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 120px;
  }

  #logo-vybees{
    width: 100%;
    height: auto;
  }

  .lds-ellipsis {
    margin-left: 40.5%;
    margin-right: 40.5%;
    width: 19%;
    height: 80px;
  }

  #bottom-copyright{
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 120px;
  }

  #container-business-inquieries{
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 30px;
  }

  #container-wip {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
} 

}




.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 10%;
    color: black;
}

@media (max-width: 800px) {
    .hamburger {
        display: block;
    }
    #navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #f8f8f8;
        text-align: center;
    }
    #navbar ul {
        flex-direction: column;
        padding: 10px;
    }
    #navbar ul li {
        margin: 10px 0;
    }


}