* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Ubuntu", sans-serif;
    color: #333;
}
.conteneur {
    /*max-width: 100vw;*/
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.conteneur-central {
    flex: 0 1 auto;  /*grow 1, shrink 1, basis auto sur l'axe y*/
    display: flex;
    background-color: #e0d39f;
}
header, footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;;
    flex: 0 0 auto;  /*grow 0, shrink 0, basis 60px sur l'axe y*/
    background-color: #fcf2bd;
    box-shadow: 0px 35px 14px -12px rgba(0,0,0,0.1),11px 19px 16px 0px rgba(0,0,0,0.1);
}
header {
    height: 10vh;
}
#home-server {
  background-color: #af9d5d; /* Couleur de "fond" du trou */
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  /* On ajoute une ombre interne portée sur le texte */
  text-shadow: 0px 2px 3px rgba(255,255,255,0.3);
}
footer {
    height: 5vh;
}
.img-entete {
    margin-left: 10px;
    display: block;
    height: 1.2rem;
}
nav {
    background-color: #afc7d1;
    flex: 0 0 200px; /*grow, shrink, basis  sur l'axe x*/
    text-align: center;
}
section {
    margin: 0 auto;
    flex: 1 1 auto; /*grow, shrink, basis  sur l'axe x*/
    display: flex;
    justify-content: center;
    /*border: 2px solid yellow;*/
    height: 85vh;
}
.page-acceuil {
    z-index: 6;
    display: flex;
    flex-direction: column;
    position: absolute;
    font-size: 1.2rem;
    font-weight: 400;
    width: 100%;
    height: 86vh;
    background-color: #fffbe3;
    justify-content: space-around;
    align-items: center;
}
.hidden-pageAcceuil {
    display: none;
}
.page-acceuil img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border: 2px solid #e0d39f;

}
.page-acceuil p {
    text-align: center;
    padding: 1rem 2rem 1rem 2rem;
}
.conteneur-media {
    position: relative;
    background-color: rgba(255, 251, 227, 0.8);
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 85vh;
    /*border: 1px solid green;*/
    align-items: center;
    /*border: 2px solid green;*/
    overflow-y: auto; 
}
.carrousel {
    width: 90%;
    flex: 1 1 auto; /*grow 1, shrink 1, basis auto sur l'axe y*/
    height: 100vh;
}
.texte {
    width: 85%;
    flex: 0 0 auto; /*grow 1, shrink 1, basis auto sur l'axe y*/
    border-left: 3px solid #A0B4C0;
    border-right: 3px solid #A0B4C0;
    box-shadow: 16px 15px 29px 0px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1),12px 10px 15px -3px rgba(0,0,0,0.1); 
    background-color: #F0F4F8;
    /*overflow-y: auto;*/
}
/*@media (orientation: landscape) and (min-width: 768px) {
  .texte { height: 80px;}
}*/
.bordure {
    margin-top: 20px;
    border: 3px solid #A0B4C0;
    border-radius: 20px;
    box-shadow: 16px 15px 29px 0px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1),12px 10px 15px -3px rgba(0,0,0,0.1);
    overflow: hidden;
}
.multimedia {
    /*border-radius: 16px;*/
    width: 100%;
    aspect-ratio: 16/9;
    /*border: 1px solid orange;*/
    display: flex;
    position: relative;
}
.titre {
    font-family: "Inter",'Times New Roman', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    padding-left: 10px;
    height: 4rem;
    padding-top: 1rem;
}
.slide {
    z-index: 5;
    display: flex;
    position: absolute;
    width: 5%;
    height: 100%;
    /*border: 1px solid blue;*/
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease-in;
}
.f-avant {
    right: 0;
    bottom: 0;
}
.f-avant {
    display: flex;
    justify-content: end;
}
.f-arriere img {
    display: none;
    height: 15%;
}
.f-arriere:hover img {
    z-index: 1;
    display: block;
    opacity: 0.6;
}
.f-avant img {
    display: none;
    height: 15%;
}

.f-avant:hover img {
    z-index: 1;
    display: block;
    opacity: 0.6;
}
.f-arriere:hover {
    background: linear-gradient(
    to right,
    rgba(128, 128, 128, 0.8), /* gris 80% opacité */
    rgba(128, 128, 128, 0)    /* même gris mais totalement transparent */
);
}
.f-avant:hover {
    background: linear-gradient(
    to left,
    rgba(128, 128, 128, 0.8), /* gris 80% opacité */
    rgba(128, 128, 128, 0)    /* même gris mais totalement transparent */
    );

}
.track-conteneur {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .4s ease;

}
.track {
    position: relative; /*relative*/
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    /*object-fit: cover; */

}
.diaporama {
    position: absolute; /*absolute/*
    /*display: inline-block"*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}
nav {
    box-shadow: 25px 6px 22px -12px rgba(0,0,0,0.1),26px 7px 12px 0px rgba(0,0,0,0.1);
}
.menu {
    margin-top: 20px;
    flex-direction: column;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    /*border: 1px solid black;*/
}
.items {
    display: flex;
    border-radius: 8px;
    padding: 8px 6px;
    text-align: left;
    margin: 3px 3px 0 8px;
    list-style: none;
    cursor: pointer;
    text-transform: capitalize;
    align-items: center;
    column-gap: 5px;
}
.image-menu {
    height: 1.3rem;
    aspect-ratio: 1/1;
}
li {
    transition: 0.2s ease-out;
}
.conteneur-titre {
    display: flex;
    align-items: center;
    border-top: 1px solid #A0B4C0;
}
.info-bulle {
    display: none;
    position: absolute;
    width: 340px;
    min-height: 10rem;
    max-height: 20rem;
    padding: 0 10px 0 10px;
    border: 2px solid #A0B4C0;
    border-radius: 8px;
    background-color: #F0F4F8;
    cursor: pointer;
}
.conteneur-infoBulle {
    min-height: 155px;
    max-height: 295px;
    overflow-y: auto;
}
.marge-infoBulle {
    height: 25px;
}
.texte-infobulle {
    padding: 0 5px 10px 5px;
}
.reveal-info-bulle {
    z-index: 3;
    display: block;
}
.hotspots {
    z-index: 2;
    position: absolute;
    display: block;
    cursor: pointer;
}
.fermeture {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    padding-top: 3px;
    text-align: center;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    background-color: #A0B4C0;
    cursor: pointer;
}
.contenu {
    /*border: 1px solid black;*/
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 15px;
    padding-left: 5%;
    padding-right: 5%;
    /*border: 1px solid black;*/
}
li:hover{
    background-color: #D9E5EC;
    scale: 1.1;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1),0px 10px 15px 7px rgba(0,0,0,0.1);
}
.active-menu {
    scale: 0.95;
    background-color: #A8C2D2 ;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1),inset 0px 10px 15px 7px rgba(0,0,0,0.1);
}
    
/*------------------------------------------------*/
