@charset "UTF-8";
.escapegame {
  padding: 20px;
}
.escapegame_accueil {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 460px;
  margin-bottom: 16px;
  background-image: var(--escapegame-image-url);
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.escapegame_accueil h1 {
  font-size: 40px;
  margin-bottom: 14px;
  font-family: Intro, sans-serif;
}
.escapegame_accueil p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.escapegame_accueil .arrow {
  position: absolute;
  bottom: 50px;
  left: 46%;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
}
.escapegame_accueil .arrow img {
  width: 45px;
  height: auto;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.salle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
.salle_description_choco, .salle_description_labo {
  max-width: 100%;
  padding: 32px;
}
.salle_description_choco h2, .salle_description_labo h2 {
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 8px;
  text-align: center;
}
.salle_description_choco p, .salle_description_labo p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: center;
}
.salle_description_choco .reserve-button-container, .salle_description_labo .reserve-button-container {
  text-align: center;
}
.salle_description_choco .reserve-button-container .reserve-button-choco, .salle_description_labo .reserve-button-container .reserve-button-choco {
  display: inline-block;
  margin-top: 16px;
  padding: 16px 32px;
  color: #FFFFFF;
  background-color: #722FCF;
  border: none;
  text-decoration: none;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
}
.salle_description_choco .reserve-button-container .reserve-button-choco:hover, .salle_description_labo .reserve-button-container .reserve-button-choco:hover {
  background-color: #53209A;
}
.salle_description_choco .reserve-button-container .reserve-button-labo, .salle_description_labo .reserve-button-container .reserve-button-labo {
  display: inline-block;
  margin-top: 16px;
  padding: 16px 32px;
  color: #FFFFFF;
  background-color: #9D58FF;
  border: none;
  text-decoration: none;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
}
.salle_description_choco .reserve-button-container .reserve-button-labo:hover, .salle_description_labo .reserve-button-container .reserve-button-labo:hover {
  background-color: #53209A;
}
.salle .gallery-escapegame-choco {
  margin-top: 16px;
}
.salle .gallery-escapegame-choco img {
  width: 280px;
  height: auto;
  border-radius: 10px;
}
.salle .gallery-escapegame-labo {
  flex: 1;
  min-width: 280px;
  min-height: 280px;
  background-image: var(--labo-image-url);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.room-details {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 25px;
  margin: 2rem auto;
}
.room-details .details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 2;
}
.room-details .details .detail {
  text-align: center;
  color: #2B3040;
}
.room-details .details .detail .icon img {
  width: 100px;
  height: 100px;
  margin-bottom: 0.5rem;
}
.room-details .details .detail p {
  font-size: 16px;
}
.room-details .details .detail p .titre-details {
  font-size: 22px;
}
.room-details .rounded-line-vertical {
  width: 300px;
  height: 3px;
  background-color: #53209A;
  border-radius: 5px;
  margin: auto;
}

.rounded-line {
  width: 100%;
  max-width: 320px;
  height: 11px;
  background-color: #722FCF;
  border-radius: 50px;
  margin: auto;
}

.rounded-line-inverse {
  width: 100%;
  max-width: 320px;
  height: 12px;
  background-color: #9D58FF;
  border-radius: 50px;
  margin: auto;
}

.demarche {
  min-height: 94.4vh;
  width: 100%;
  text-align: center;
}
.demarche .accordion-container {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
.demarche .accordion-container .accordion {
  margin: 1.5rem 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.demarche .accordion-container .accordion.active .accordion-body {
  display: block;
}
.demarche .accordion-container .accordion .accordion-header {
  display: flex;
  align-items: center;
  background-color: #722FCF;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.demarche .accordion-container .accordion .accordion-header:hover {
  background-color: #53209A;
}
.demarche .accordion-container .accordion .accordion-header span {
  display: inline-block;
  height: 4.5rem;
  width: 6rem;
  line-height: 4.3rem;
  text-align: center;
  background: #FFFFFF;
  color: #2B3040;
  margin-right: 1rem;
  transition: transform 0.3s ease;
  clip-path: polygon(0% 0%, 55% 0%, 100% 50%, 55% 100%, 0% 100%);
  position: relative;
  left: -0.5rem;
  font-size: 2.5rem;
}
.demarche .accordion-container .accordion .accordion-header h3 {
  font-size: 22px;
}
.demarche .accordion-container .accordion .accordion-body {
  display: none;
  padding: 1.5rem;
  font-size: 18px;
  line-height: 1.8;
  background-color: #FFFFFF;
  color: #2B3040;
}
.demarche .accordion-container .accordion .accordion-body p {
  font-size: 16px;
}
.demarche .accordion-container .accordion .accordion-body a {
  color: #722FCF;
  font-weight: bold;
  text-decoration: none;
}
.demarche .accordion-container .accordion .accordion-body a:hover {
  color: #9D58FF;
  text-decoration: underline;
}

.infos-pratiques {
  font-size: 28px;
  margin-bottom: 60px;
  text-align: center;
}

@media (min-width: 1024px) {
  .escapegame {
    padding: 50px;
  }
  .escapegame_accueil {
    height: 500px;
    margin-bottom: 2rem;
    background-size: contain;
  }
  .escapegame_accueil h1 {
    font-size: 66px;
    margin-bottom: 14px;
  }
  .escapegame_accueil p {
    font-size: 22px;
    max-width: 1000px;
    line-height: 1.6;
  }
  .escapegame_accueil .arrow {
    position: absolute;
    bottom: 64px;
    left: 48%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
  }
  .escapegame_accueil .arrow img {
    width: 60px;
    height: auto;
  }
  .salle {
    display: flex;
    align-items: center;
    margin-top: 70px;
    justify-content: space-between;
  }
  .salle:nth-child(odd) {
    flex-direction: row;
  }
  .salle:nth-child(even) {
    flex-direction: row-reverse;
  }
  .salle_description_choco, .salle_description_labo {
    flex: 1;
    max-width: 700px;
  }
  .salle_description_choco h2, .salle_description_labo h2 {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .salle_description_choco p, .salle_description_labo p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: left;
  }
  .salle_description_choco {
    margin-right: 32px;
    margin-bottom: 40px;
  }
  .salle_description_choco h2 {
    text-align: left;
  }
  .salle_description_choco .reserve-button-choco {
    margin-top: 1rem;
    padding: 0.8rem 3.5rem;
    background-color: #6F98FF;
    border-radius: 10px;
    font-size: 22px;
  }
  .salle_description_choco .reserve-button-choco:hover {
    background-color: #53209A;
  }
  .salle_description_labo h2 {
    text-align: right;
  }
  .salle_description_labo p {
    text-align: right;
  }
  .salle_description_labo .reserve-button-labo {
    display: inline-block;
    margin-top: 16rem;
    padding: 10px 40px;
    background-color: #9D58FF;
    border-radius: 10px;
    font-size: 22px;
    left: 30%;
  }
  .salle_description_labo .reserve-button-labo:hover {
    background-color: #722FCF;
  }
  .salle .gallery-escapegame-choco {
    flex: 1;
    max-width: 600px;
  }
  .salle .gallery-escapegame-choco img {
    display: block;
    margin: 0 auto;
    width: 560px; /* Largeur fixée en pixels */
    height: auto; /* Garde les proportions de l'image */
    border-radius: 20px; /* Coins arrondis */
  }
  .salle .gallery-escapegame-choco img:nth-child(2) {
    margin-top: 20px;
  }
  .salle .gallery-escapegame-labo {
    flex: 1;
    max-width: 1000px;
    height: 540px;
  }
  .room-details {
    background-color: #FFFFFF;
    padding: 28px;
    border-radius: 20px;
    height: 330px;
    width: 60%;
    margin: 110px auto;
  }
  .room-details .details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
  }
  .room-details .details .detail {
    text-align: center;
    flex: 1;
    color: #2B3040;
  }
  .room-details .details .detail .icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
  }
  .room-details .details .detail p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
  }
  .room-details .details .detail .titre-details {
    font-size: 26px;
  }
  .room-details .rounded-line-vertical {
    width: 3px;
    height: 120px;
    background-color: #53209A;
    border-radius: 5px;
  }
  .rounded-line {
    width: 100%;
    max-width: 220px;
    height: 14px;
    background-color: #722FCF;
    border-radius: 50px;
    margin-left: 0;
  }
  .rounded-line-inverse {
    width: 100%;
    max-width: 220px;
    height: 14px;
    background-color: #9D58FF;
    border-radius: 50px;
    margin-right: 0;
  }
  .demarche {
    width: 100%;
    text-align: center;
  }
  .demarche .accordion-container {
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }
  .demarche .accordion-container .accordion {
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .demarche .accordion-container .accordion .accordion-body {
    font-size: 18px;
  }
  .demarche .accordion-container .accordion .accordion-header {
    display: flex;
    align-items: center;
    background-color: #722FCF;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .demarche .accordion-container .accordion .accordion-header h3 {
    font-size: 24px;
  }
  .demarche .accordion-container .accordion .accordion-header h3 span {
    height: 80px;
    width: 104px;
    line-height: 80px;
  }
  .infos-pratiques {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 80px;
    text-align: left;
  }
}

/*# sourceMappingURL=escapegame.css-jCh4ahz.map */
