/*Branlette Visuelle*/
.link-underline {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}

.link-underline::before,
.link-underline::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: black;
  transform: scaleY(0);
  transition: transform 0.3s ease-out;
}

.link-underline::before {
  left: 0;
  transform-origin: top left;
}

.link-underline::after {
  right: 0;
  transform-origin: top right;
}

.link-underline:hover::before,
.link-underline:hover::after {
  transform: scaleY(1);
}
/*Fin de la branlette*/

html {
  font-size: 62.5%;
}

/*Police Page*/
body {
  font-family: 'Roboto', sans-serif;
}

/*Boite de citation*/
.quote-box {
border: 4px solid black;
padding: 2rem;
margin-left: 30rem;
margin-right: 30rem;
margin-bottom: -14.1rem;
text-align: center;
background: white;
position: relative;
z-index: 2;
}

.quote-box-container {
flex-direction: column;
align-items: center;
position: relative;
}

.quote-text {
font-weight: bold;
margin-bottom: 0.5rem;
font-family: 'Roboto';
font-size: large;
}

.quote-author {
margin-top: 0.5rem;
font-weight: bold;
font-style: normal;
}
/*Fin boite de citation*/

/*Background Après citation*/
.backACitation {
  width: 100%; /* Prend la largeur totale de la page */
  height: 50rem; /* Définit la hauteur du bloc */
  background-color: black; /* Mettez ici la couleur de fond désirée */
  position: relative; /* position relative si vous ne voulez pas qu'il se superpose à d'autres éléments */
  /* Ajoutez d'autres styles si nécessaire */
}

.separator {
height: 4px;
background-color: black;
width: 100%;
top: 50%;
position: absolute; /*Passer en dessous de la boite de citation*/
}

/*Texte centré*/
.greeting-text-container {
text-align: center;
margin-top: 10rem;
}

.greeting-text {
font-size: 2rem;
font-weight: bold;
}

/*Curseur*/
html, body, .site-container {
cursor: url('../images/Souris/souris_grise.png'), auto;
cursor: -webkit-image-set(
  url('../images/Souris/souris_grise.png') 1x,
  url('../images/Souris/souris_grise.png') 2x
), auto;
}

.site-container::-webkit-scrollbar {
  width:14px;
  }

  /*track*/
  .site-container::-webkit-scrollbar-track {
  background-color: #ffffff;
  background-size: 6px;
  border-left: 4px solid #000000;
  }
  
  /*thumb*/
  .site-container::-webkit-scrollbar-thumb {
  background:#c4c4c4;
  border: 4px solid #000000;
  border-right: none;
  }

  /*thumb hover*/
  .site-container::-webkit-scrollbar-thumb:hover {
  background:#ffffff;
  }

  /*thumb pressed*/
  .site-container::-webkit-scrollbar-thumb:active {
  background: #ffffff;
  }
  
  .header {
    width: calc(100% - 16px);
  }
  
  .site-container {
    height: calc(100vh - 68px);
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: -4px;
    margin-bottom: -4px;
  }

  .gifchat {
    width: 150;
    height: auto;
  }

  /*CAROUSSEL*/

  .carousel {
    position: relative;
    width: 1100px; /* Ajustez cette valeur selon votre besoin */
    height: 520px;
    margin-bottom: -32px;
    margin-top: -32px;
    margin-left: -32px;
    overflow: hidden;
}

.carouselVeille {
  position: relative;
  width: 1100px; /* Ajustez cette valeur selon votre besoin */
  height: 520px;
  margin-bottom: -32px;
  margin-left: -32px;
  overflow: hidden;
}

.containerVeille {
  width: 1107px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.projetsuivant {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.titreveille {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.slides {
    display: flex;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    display: none; /* Cache toutes les diapositives par défaut */
}

.slide img {
    width: 100%; /* Assure que l'image prend toute la largeur de la diapositive */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.slide:first-child {
  display: block;
}

  /*RESPONSIVE*/
  @media screen and (min-width: 768px) {
    .header {
      width: calc(100% - 24px);
    }
  }
  @media screen and (min-width: 991px) {
    .header {
      width: calc(100% - 40px);
    }
    .site-container::-webkit-scrollbar {
      width: 24px;
    }
  }
  
  @media screen and (min-width: 991px) {
    .click-to-top:nth-child(2) {
      top: 100px;
      right: 0px;
    }
    .click-to-top:nth-child(3) {
      left: 50px;
      top: 250px;
      right: 0px;
    }
    .click-to-top:nth-child(4) {
      left: auto;
      top: 350px;
      right: 70px;
    }
  }