@charset "UTF-8";
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  background-color: #2f2f2f;
  padding: 0;
  font-size: 1.0714285714rem;
  line-height: 1.5;
  height: 100%;
  width: 100%;
  color: #fefffe;
  font-weight: 400;
}

.RoundedImg {
  border-radius: 24px;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Fixed {
  top: 10px;
  right: 0;
  margin-left: 50%;
  transform: translateX(-50%);
  position: fixed;
  z-index: 10;
}

.NavLogo {
  left: 10px;
  margin-right: 100%;
  top: 10px;
  position: fixed;
  z-index: 10;
  height: 70px;
}

header {
  display: block;
  width: 100%;
}
header nav {
  display: flex;
  margin: 0;
  padding: 0;
  top: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
  min-width: auto;
  height: 70px;
  text-align: center;
  position: fixed;
  z-index: 10;
  border-radius: 1000px;
  backdrop-filter: blur(20px) invert(10%) brightness(90%);
  -webkit-backdrop-filter: blur(20px) invert(10%) brightness(90%);
  padding-left: 50px;
  padding-right: 50px;
}
header nav .nav-link-panel {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  gap: 10px;
}
header nav .nav-link {
  padding: 0 20px 0 20px;
  transition: 0.5s;
  will-change: transform;
  text-decoration: none;
  font-size: 24px;
  color: #fefffe;
  position: relative;
  display: inline-block;
  margin: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
header nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: opacity(10%);
  -webkit-backdrop-filter: opacity(10%);
  border-radius: 1000px;
  color: #9bff22;
}
header nav .firstnav {
  background-color: rgba(155, 255, 34, 0.3);
  backdrop-filter: opacity(10%);
  -webkit-backdrop-filter: opacity(10%);
  border-radius: 1000px;
  color: white;
}
header nav .nav-mobile-first {
  display: flex;
  margin: 0 auto auto;
}
header .video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom: 1px solid rgba(155, 255, 34, 0.3);
}
header .video-container #background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
header .video-container::before {
  content: "";
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
header .video-container .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
  width: 800px;
  max-width: 100vw;
}
header .video-container .logo img {
  width: 100%;
  max-width: 100vw;
}

h1 {
  margin: 0;
  font-size: 1.6071428571rem;
}

h2 {
  margin-top: 0;
  text-align: center;
}

p {
  margin-top: 0;
}

a {
  color: #9bff22;
}

.flex {
  display: flex;
  justify-content: space-between;
}
.flex .WithBackground {
  width: 100%;
  box-sizing: border-box;
}
.flex .WithBackground .img {
  margin: auto;
}
.flex .WithBackground .img img {
  margin: auto;
}

section {
  margin: 50px 10vw;
  gap: 50px;
}
section .divText {
  max-width: 600px;
}
section .imgGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  height: 100%;
  position: relative;
}
section .imgGrid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
section .img {
  margin: auto 0;
}
section .img img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.WithBackground {
  position: relative;
  padding: 50px;
  justify-content: space-around;
}
.WithBackground::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #353435;
  border-radius: 24px;
}
.WithBackground::before {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  top: -10px;
  left: -10px;
  z-index: -1;
  border-radius: 32px;
  border: 1px solid rgba(155, 255, 34, 0.3);
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card {
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: 24px;
  position: relative;
}
.card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.card h2 {
  color: #fefffe;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  white-space: nowrap;
  text-align: center;
  margin: 10px 0 10px 50%;
  padding: 0 20px 0 20px;
  transform: translateX(-50%);
  border-radius: 24px;
  backdrop-filter: blur(20px) invert(10%) brightness(60%);
  -webkit-backdrop-filter: blur(20px) invert(10%) brightness(60%);
  transition: 0.5s;
}
.card .card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(20px) invert(20%) brightness(60%);
  -webkit-backdrop-filter: blur(20px) invert(20%) brightness(60%);
  border-radius: 16px;
  margin: 10px;
  padding: 5px 20px 5px 20px;
  box-sizing: border-box;
}
.card video, .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}
.card::before {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  top: -10px;
  left: -10px;
  z-index: -1;
  border-radius: 32px;
  border: 1px solid rgba(155, 255, 34, 0.3);
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.card:hover::before {
  border: 1px solid rgb(155, 255, 34);
}
.card:hover > h2 {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1000px;
  color: #9bff22;
}
.card .Button {
  position: absolute;
  text-align: center;
  top: 10px;
  left: 10px;
  right: 10px;
  width: auto;
  height: 70px;
  margin: 0;
  padding: 0;
  z-index: 0;
  border-radius: 24px;
  line-height: 70px;
}

.infohide p {
  text-align: center;
  opacity: 0;
  transition: 0.5s;
}
.infohide:hover > p, .infohide:active > p {
  opacity: 1;
}

.CardSection {
  display: flex;
  justify-content: space-between;
}

.cardContact {
  margin-top: auto;
}
.cardContact div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 10px;
}
.cardContact div a {
  padding: 0 !important;
}
.cardContact p {
  text-align: center;
}

form {
  width: 100%;
  padding: 20px;
  background-color: #353435;
  border-radius: 24px;
  font-family: Arial, sans-serif;
  position: relative;
  box-sizing: border-box;
  /* Style des labels */
  /* Style des champs de saisie */
  /* Style du bouton */
}
form label {
  display: block;
  margin-bottom: 5px;
  color: #fefffe;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=file],
form textarea,
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(155, 255, 34, 0.3);
  border-radius: 16px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #2f2f2f;
  transition: border-color 0.3s ease;
  color: #fefffe;
  appearance: none; /* Supprime le style par défaut de Safari */
  -webkit-appearance: none; /* Supprime l'apparence sur Safari */
  -moz-appearance: none; /* Pour Firefox */
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=file]:focus,
form textarea:focus,
form select:focus {
  border-color: #9bff22;
  outline: none;
}
form .inputGroup {
  gap: 10px;
  margin-bottom: 0;
}
form .inputGroup div {
  width: 100%;
  margin-bottom: 0;
}
form textarea {
  resize: none;
}
form button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(155, 255, 34, 0.3);
  color: #fefffe;
  border-radius: 16px;
  border: transparent 1px solid;
  font-size: 16px;
  cursor: pointer;
  transition: 0.5s;
}
form button:hover {
  border: #9bff22 1px solid;
}
form::before {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  top: -10px;
  left: -10px;
  z-index: -1;
  border-radius: 32px;
  border: 1px solid rgba(155, 255, 34, 0.3);
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

footer {
  border-top: rgba(155, 255, 34, 0.3) 1px solid;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 50px;
  justify-content: space-around !important;
}
footer a {
  display: flex;
  text-align: center;
  margin-top: 50px;
  align-content: center;
  color: #fefffe;
  justify-content: space-evenly;
}
footer .ReseauButton {
  text-align: center;
  border-radius: 1000px;
  backdrop-filter: blur(20px) invert(10%);
  -webkit-backdrop-filter: blur(20px) invert(10%);
  background-color: rgba(155, 255, 34, 0.3);
  border: 1px solid transparent;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: space-evenly;
  margin: 0 10px;
  padding: 10px;
  transition: 0.5s;
  user-select: none;
  overflow: hidden;
  z-index: 1;
  position: relative;
  font-size: 18px;
  line-height: 1.5;
}
footer .ReseauButton:hover {
  border: 1px solid #9bff22;
}

.hovered > p {
  opacity: 1;
}
.hovered::before {
  border: 1px solid rgb(155, 255, 34);
}
.hovered > h2 {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1000px;
  color: #9bff22;
}

.gallery {
  margin: 110px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Toujours 3 lignes */
  gap: 20px; /* Espace entre les images */
  justify-content: center;
  width: max-content;
}
.gallery img {
  width: 99%;
  max-width: 400px;
  height: 500px;
  border-radius: 24px;
  position: relative;
  object-fit: cover; /* Couper les images pour éviter les espaces */
  transition: 0.5s;
  border: 1px transparent solid;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.gallery img:hover {
  border: 1px #9bff22 solid;
}

/* Styles pour la modale */
.modal {
  display: none; /* Masquer la modale par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Fond sombre */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Toujours au-dessus des autres éléments */
}

.modal img {
  max-width: 90vw; /* Limite de taille pour l'image */
  max-height: 90vh; /* Limite de hauteur */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.modal.show {
  display: flex; /* Afficher la modale lorsqu'elle est active */
}

#avis-google {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
#avis-google .review-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  margin: 20px;
  background-color: #353435;
  border-radius: 24px;
  color: #fefffe;
}
#avis-google .review-card .review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
#avis-google .review-card .review-header h3 {
  margin: 0;
  font-size: 16px;
}
#avis-google .review-card .review-profil {
  display: flex;
}
#avis-google .review-card .review-profil img {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}
#avis-google .review-card .review-date {
  font-size: 12px;
  color: #fefffe;
  margin: 0;
}
#avis-google .review-card .review-stars {
  color: #ffa500;
  font-size: 18px;
  margin: 5px 0;
}
#avis-google .review-card .review-text {
  font-size: 14px;
  color: #fefffe;
}

.review-button {
  position: absolute;
  right: -30px;
  top: 50%;
  background-color: rgba(155, 255, 34, 0.3);
  color: #fefffe;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  text-align: center;
  transform: translateY(-50%);
  backdrop-filter: blur(20px) invert(10%);
  -webkit-backdrop-filter: blur(20px) invert(10%);
  border: 1px solid transparent;
  transition: 0.5s;
}
.review-button img {
  position: absolute;
  right: 0;
  transform: translateX(5%);
}
.review-button:hover {
  border: 1px solid #9bff22;
}

.reviewBox {
  position: relative;
}

.loading-spinner {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #fefffe;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
  margin-left: 5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.Button {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 70px;
  text-align: center;
  border-radius: 1000px;
  backdrop-filter: blur(20px) invert(10%);
  -webkit-backdrop-filter: blur(20px) invert(10%);
  background-color: rgba(155, 255, 34, 0.3);
  border: 1px solid transparent;
  transition: 0.5s;
  will-change: transform;
  text-decoration: none;
  font-size: 24px;
  color: #fefffe;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.Button p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px 0 20px;
  margin: auto;
  text-align: center;
  vertical-align: bottom;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.Button:hover {
  border: 1px solid #9bff22;
}

.ContactButton {
  width: auto;
  position: fixed;
  top: 10px;
  right: 50px;
  z-index: 10;
  padding-left: 25px;
  padding-right: 25px;
}

.QDiv {
  position: relative;
  justify-content: space-around;
  margin-bottom: 50px;
}
.QDiv::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #353435;
  border-radius: 40px;
}
.QDiv::before {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  top: -10px;
  left: -10px;
  z-index: -1;
  border-radius: 48px;
  border: 1px solid rgba(155, 255, 34, 0.3);
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}
.QDiv .Q {
  cursor: pointer;
  min-height: 70px;
  height: auto;
  border-radius: 40px;
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.QDiv .Q p {
  padding: 0 10px 0 10px;
  cursor: pointer;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  text-wrap: auto;
  transform: translateY(0);
}
.QDiv .QRep {
  height: 0;
  overflow: hidden;
  transition: height 0.1s ease;
}
.QDiv .QRep .QRepContent {
  padding: 50px;
  margin-bottom: 0;
}
.QDiv .QOpen {
  height: auto;
}

/* Styles globaux de la scrollbar */
::-webkit-scrollbar {
  width: 5px; /* Largeur de la barre de défilement */
  height: 5px; /* Hauteur de la barre de défilement horizontale */
}

/* Style de la zone de la barre de défilement */
::-webkit-scrollbar-track {
  background: transparent; /* Couleur de fond de la piste */
}

/* Style du curseur (thumb) */
::-webkit-scrollbar-thumb {
  background: #9bff22; /* Couleur du curseur */
  border-radius: 10px;
}

/* Lorsque le curseur est survolé */
::-webkit-scrollbar-thumb:hover {
  background: #9bff22; /* Couleur du curseur au survol */
}

/* Firefox */
scrollbar {
  width: 8px;
  height: 8px;
}

scrollbar-thumb {
  background: transparent; /* Couleur de fond de la piste */
  border-radius: 10px;
}

scrollbar-track {
  background: #9bff22; /* Couleur du curseur */
  border-radius: 10px;
}

.CenteredBox {
  position: relative;
  justify-content: space-around;
}

@media screen and (max-width: 1400px) {
  /* Icône burger */
  header nav {
    left: 10px;
    min-width: 70px;
    min-height: 70px;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    transform: translateX(0);
    border-radius: 32px;
  }
  header nav .nav-mobile-first {
    padding-top: 15px !important;
    padding-left: 15px !important;
  }
  header nav .burger-icon span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: #9bff22;
    margin: 8px 0 0 2px;
  }
  header nav #openBtn {
    margin-top: auto;
    margin-bottom: auto;
    z-index: 100;
  }
  header nav .nav-link-panel {
    display: none;
    width: auto;
    height: auto;
    z-index: 10;
    margin-top: 20px;
    padding: 10px;
  }
  header nav .nav-link-panel a {
    display: block;
    height: auto;
    font-size: 20px;
    text-align: center;
    padding: 15px;
    border-radius: 24px;
  }
  header nav .nav-link {
    transform: translateY(0);
  }
  header .close .nav-link-panel {
    display: none;
  }
  header .open .nav-link-panel {
    display: block;
  }
  header .ContactButton {
    right: 10px;
    transform: translateX(0);
  }
  header .NavLogo {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  section {
    margin: 50px 20px;
  }
  .review-button {
    right: -15px;
  }
}
@media screen and (max-width: 1100px) {
  .flex {
    display: block;
    justify-content: initial;
  }
  section {
    gap: 50px;
    display: block;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  section div {
    margin: auto;
    margin-bottom: 50px;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(1, auto); /* Toujours 3 lignes */
    width: auto;
  }
  #avis-google {
    display: grid;
    grid-template-columns: repeat(1, auto); /* Toujours 3 lignes */
    width: auto;
  }
  #avis-google div {
    margin: 0;
    margin-bottom: 0;
  }
  .review-button {
    top: 100%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
  }
  .review-button img {
    transform: translateX(1%) translateY(5%) rotate(90deg);
  }
  .review-button:hover {
    border: 1px solid #9bff22;
  }
}
@media screen and (max-width: 600px) {
  .WithBackground {
    padding: 1rem;
  }
  section {
    margin-left: 20px;
    margin-right: 20px;
  }
  header .ContactButton .nav-link {
    padding: 0 5px;
  }
  .QDiv .Q p {
    font-size: 1.0714285714rem;
  }
  .QDiv .QRep .QRepContent {
    padding: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
