
.title-section{
    color: rgba(191, 27, 51, 1.0);
    letter-spacing: 15px;
    text-transform: uppercase;
    padding-bottom: 50px;
}

.content-section{
    display: none;
}
.content-section.active {
    display: block;
}

.section-accueil-main{
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 110px 0px 110px 0px;
}
.section-accueil-main h1{
  text-transform: uppercase;
  letter-spacing: 10px;
}
.section-accueil-main p{
  font-size: 25px;
  letter-spacing: 2px;
  margin-top: 30px;
}


  /* MODAL ALL PAGES */

.modal{
  --bs-modal-width: 80%;
}
.modal-content{
  border: none;
  border-radius: 10px !important;
}
.modal-header{
  border-bottom: none;
}
.modal-title{
  letter-spacing: 3px;
  color: rgba(191, 27, 51, 1.0);
  font-weight: normal !important;
  text-transform: uppercase;
}

  /* FIN MODAL IMAGES ALL PAGES */

  /* CAROUSEL IN MODAL ALL PAGES */

  .carousel {
    position: relative;
    width: 70%;
    height: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
  }
  
  /* Track contenant toutes les slides */
  .carousel-track {
    display: flex;
    width: 100%; /* 5 slides */
    transition: transform 0.6s ease-in-out;
  }
  
  /* Chaque slide */
.slide {
  width: 100%;
  height: 700px;
  flex-shrink: 0;
}

/* Masquer les radios */
input[type="radio"] {
  display: none;
}

  /* Thumbnails */
  .carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
  .carousel-thumbnails label {
    width: 60px;
    height: 40px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
  }
  .carousel-thumbnails label:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  .carousel-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* FIN CAROUSEL IN MODAL ALL PAGES */



        /* RESPONSIVE */
@media screen and (max-width: 600px){
  .title-section{
    text-align: center !important;
  }

  .modal{
    --bs-modal-width: 100%;
  }
  .carousel{
    width: 100%;
  }
  .slide{
    height: 480px;
  }
}
@media screen and (max-width: 1600px){
  .bg-img-canapes > div{
      width: 240px !important;
      height: 300px !important;
  }

}
@media screen and (min-width: 601px) and (max-width: 1600px){
  .slide{
    height: 545px;
  }
  .modal-body{
    padding: 0px 0px 20px 0px;
  }
}
        /* FIN RESPONSIVE */
