





/*------------------------------------*\
    $Base / Version mobile
\*------------------------------------*/

/*Header*/


header {
    position: relative;
    max-width: 100vw;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Oswald", sans-serif;
    --color1: #000000 ;
    --color2: rgb(255, 255, 255);
}

.ul {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 0%;
    max-width: 100vw;
    font-size: 80%;
}

nav {width: 100%;
top: 0%;
position: relative;}


nav .ul{ 
    display: flex;
    justify-content: center;
    list-style-type: none;
    align-items: center;
    max-width: 100vw;
}


.ul {
    background-color: rgb(255, 255, 255);
    padding-top: 8%;
    max-width: 100vw;
}

.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    padding: 12px 20px;
    
}
.logo img {width: 40px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color1);
    transition: 0.15s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 7%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {display: none;}
@media(max-width: 610px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
}

#tel {
    visibility: visible;
}
li {
    list-style-type: none;
}
#ordi {
    visibility: hidden;
    height: 0px;
}


input[type="text"] {
    padding: 10px;
    border-color: black;
    border-radius: 20px; /* Arrondit les coins de l'input */
    font-size: 16px;
    scroll-margin-right: 8%;
    display: flex;
}

input[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 20px; /* Arrondit les coins du bouton */
    color: white;/* Couleur du texte */
    cursor: pointer;
    font-size: 16px;
    background-color: rgb(224, 140, 38);
    font-family: "Noto Sans", sans-serif;
    margin-left: 8%;
    display: flex;
    justify-content: center;
    list-style: none;
    text-decoration: none;
}

input[type="submit"]:hover {
    background-color: rgb(190, 113, 19);
}

/*Footer*/
footer {
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;
    color: rgb(0, 0, 0);
    position: relative;
    bottom: 0;
    width: 100%;
}
/*Index*/
body {
    margin: 0; 
    padding: 0; 
    overflow-x: hidden; /* Empêche le défilement horizontal */
    max-width: 100vw;
}
.bann {width: 100%;}
#bann {
    width: 100%;
}
video {
    width: 70%;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: auto
}

/*Listing*/

img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;

    width: auto;
    max-width: 100%; /* Ensures the image doesn't exceed its original size */
    height: auto; /* Maintains the image's aspect ratio */
    margin-bottom: 5%;
    
}
.imagesp {
    width: 50%;
}



.info1, .info2, .info3, .info4, .info5 {
  display: flex;
  justify-items: center;
  justify-content: center;
  text-align: center;
}
.accroche {
    display: flex;
    justify-content: center;
}

/*Recherche*/
form{
    display: flex;
    justify-content: center;
    padding-bottom: 20%;
    text-align: center;
}
.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Set to full viewport height */
}
.phrase {
    display: flex;
    justify-content: center;
    font-size: 140%;
    color: #000000;
    margin-bottom: 2%;
    border-radius: 5%;
    font-weight: bold;
    text-align: center;
}

/*Reponse*/
.reponse {
    display: flex;
    color:  rgb(0, 0, 0);
    border-radius: 5%;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    font-size: 200%;
}

/*------------------------------------*\
    $Version Desktop
\*------------------------------------*/


@media screen and (min-width:480px) {
    /*Header*/
header {
    font-size: 110%;
    margin-bottom:3%;
}

#tel {
    visibility: hidden;
    height: 0px;
}

#ordi{
    visibility: visible;
}
.logo {
   width: 25px;
   margin: 0;
   margin-right: 56%;
}
.ul {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-top: 0%;
    width: 100%;
    font-size: 80%;
}

nav .ul{ 
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    align-items: center;
    max-width: 100vw;
}

nav li:hover{ 
    display: flex;
    font-weight: bold;
} 
nav a {
    display: flex;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-family: "Tauri", sans-serif;
    font-size: 120%;
    justify-content: flex-end;
}

nav li {
    margin-right: 3%;
}
    /*Listing*/


    #ordi .ul {
        display: flex; /* Utilisez flexbox pour aligner les éléments horizontalement */
        justify-content: flex-end; /* Alignez les éléments à droite */
    }
    
    #ordi .ul ul {
        display: flex; /* Utilisez flexbox pour aligner les liens horizontalement */
        list-style-type: none; /* Supprimez les puces de liste */
    }
    
    #ordi .ul ul li {
        margin-left: 15px; /* Ajoutez un espacement entre les liens */
        padding-right: 15px; /* Ajoutez un décalage vers la gauche */
        margin-right: 40px;
    }