*,::after,::before{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
}
html,body{
    height: 100vh;
    width: 100vw;
}
.aside{
    display: none;
}
.accueil{
height: 100%;
position: relative;
width: 100%;
background-color: rgb(246, 248, 248);
}
.entete,.pieds{
    height: 15%;
    position: relative;
}
.corps{
    height: 70%;
    display: flex;
    width: 100%;
}
.b_droit,.b_gauche{
    width: 15%; 
    height: 100%;
}
.b_droit{
    border-left: 2px solid blue;
    border-radius: 5px;
    box-shadow: 2em;
    padding-top: 4em;
    padding-left: 1em;
}
.tronc{
    width: 70%;
    height: 100%;
    text-align: center;
    align-items: center;
    overflow-y: auto;
}
.pieds
{
    display: flex;
    overflow-y: scroll;
    align-items: center;
    text-align: center;
    background-color: rgb(175, 235, 217);
    position: relative;
}
.menu{
    padding-top: 2%;
    text-align: center;
    align-items: center;
    color: rgb(237, 240, 237);
    font-weight: bold;
    background-color: rgba(3, 105, 12, 0.9);
}
.logo{
    position: absolute;
    left: 0%;
    top: 0%;
}
.logo img{
height: 50px;
width: 50px;
}
.slogan{
    text-align: center;
    align-items: center;
    background-color: brown;
    color: rgb(220, 245, 228);
    padding: 2px;
}
input, span{
    margin-bottom: 1em;
    padding: 0.3em;
    border-radius: 0.5em;
}
button{
    border-radius: 0.5em;
}
.messagerie{
    padding-top: 15px;
}
.contacter{
    position: absolute;
    top: 0%;
    right: 0%;
    text-align: right;
    align-items: flex-end;
}
.liens{
    text-align: left;
    padding-left: 10px;
}
a{
    font-style: normal;
    color: black;
    font-style: italic;
    text-decoration : none
}
#menu{
        display: none;
    }
.text{
    text-align: left;
    align-items: flex-start;
    padding: 2px;
}
.input_box{
    position: relative;
    width: 100%;
}
.input_box input{
    width: 100%;
    padding:1px;
    border-radius: 25px;
    background-color: transparent;
    outline: none;
    border: 2px solid rgba(255,255,255,0.2);
}

.horaire{
    display: inline-block;
    text-align: left;
    align-items: flex-start; 
    padding-top: 2rem;
     background-color: #d6e2ee;
      color: rgb(34, 33, 33);
      padding: 15px 25px;
      border-radius: 0 25px 25px 25px; /* Bord supérieur gauche non arrondi */
      font-family: Arial, sans-serif;
      font-size: 18px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.bienvenue{
    background-image: url("./images/entrepot.png");
    background-position: center;
    background-size: cover;
    height: 100%;
}
.liens{
    padding-left: 10px;
}
.cadre {
  display: flex;            /* Active l'affichage côte à côte */
  align-items: center;      /* Centre verticalement */
  gap: 20px;                /* Espace entre les deux div */
}

.description {
  flex: 1;                  /* Prend toute la place disponible */
  background: #f0f0f0;
  padding: 10px;
  border-radius: 8px;
}

.illustration img {
  display: block;
  max-width: 200px;         /* Limite la taille de l'image */
  height: auto;             /* Conserve les proportions */
  border-radius: 8px;
}
/*animation: flash 10s infinite;
transform: translate(-50%, -50%);*/

@keyframes flash {
    0%{
        left: 80%;
    }
    50%{
        left: 40%;
    }
    75%{
        left: 20%;
    }
    100%{
        left: 0%;
    }
     
   }
@media only screen and (max-width:900px) {
    .body{
        height: 100%;
    }
    .menu span{
        display: none;
        text-align: left;
    }
    .menu{
        background-color: rgba(3, 105, 12,1);
    }
    .contact:hover span{
        display: inline-block;
    }
    .b_droit,.b_gauche{
        display: none;
    }
    
    .tronc{
        padding-top: 15px;
        width: 100%;
    }
    .sl{
        display: none;
    }
    #menu{
        display: block;
    }  
  /*.menu:hover #menu{
        display: none;
    }*/
  #menu img{
    height: 30px;
    width: 30px;
    
  }
  .messagerie textarea{
  max-width: 96%;
}
.slogan{
    padding-left: 50px;
}
.aside img{
    position: relative;
    height: 32px;
    width: 32px;
    Left: 50%;
}
.aside{
    position: fixed;
    top: 18%;
    left: 45%;
    display: flex; 
    text-align: center;
    align-items: center;
    transform: translateY(-40%);
}
}