/* general */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background-color: #1f1f1f;
}

body {
  margin: 0%;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

h2 {
  color: black;
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  text-shadow: 5px 5px 9px rgba(0, 0, 0, 0.8);
}
@media (max-width: 425px) {
  h2 {
    font-size: 25px;
  }
}

.line-title {
  width: 150px;
  margin-top: -15px;
  margin-bottom: 40px;
  border-bottom: 6px solid black;
}

.button-booknow {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.button-booknow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #000000;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.button-booknow span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #d5a709;
}

.button-booknow svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #d5a709;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.button-booknow:hover:before {
  width: 100%;
  background: #000000;
}

.button-booknow:hover svg {
  transform: translateX(0);
}

.button-booknow:active {
  transform: scale(0.95);
}

.reservation-container {
  position: relative;
}
.reservation-container .waves-top {
  width: 100%;
  margin-bottom: -5px;
}
.reservation-container .waves-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin-bottom: -5px;
}
.reservation-container button {
  max-width: 200px;
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: #d5a709;
  background-color: #1f1f1f;
}
.reservation-container button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.reservation-container button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.reservation-container button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.reservation-container button::after {
  background-color: black;
}
.reservation-container button:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.reservation-container #reservation {
  background-color: #d5a709;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reservation-container #reservation .arrow-title {
  border: 2px solid #d5a709;
  width: 45px;
  height: 45px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transform: rotate(180deg);
  margin-bottom: 20px;
  margin-top: -20px;
}
.reservation-container #reservation .arrow path {
  fill: white;
}
.reservation-container #reservation .arrow-title:hover .arrow {
  animation: slide-in-bottom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reservation-container #reservation .btn-container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation-container #reservation .btn-container #trajet {
  color: #1f1f1f;
  background-color: #d5a709;
  border: 2px solid black;
  margin-right: 20px;
}
@media (max-width: 425px) {
  .reservation-container #reservation .btn-container #trajet {
    width: 120px;
    font-size: 10px;
  }
}
.reservation-container #reservation .btn-container #service {
  border: 2px solid black;
  margin-left: 20px;
}
@media (max-width: 425px) {
  .reservation-container #reservation .btn-container #service {
    width: 120px;
    font-size: 10px;
  }
}
.reservation-container #reservation .reservation__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  padding-left: 10%;
  padding-right: 10%;
}
@media (max-width: 1024px) {
  .reservation-container #reservation .reservation__content {
    flex-direction: column;
  }
}
.reservation-container #reservation .reservation__content form {
  width: 70%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .reservation-container #reservation .reservation__content form {
    width: 90%;
  }
}
.reservation-container #reservation .reservation__content form input, .reservation-container #reservation .reservation__content form select {
  width: 80%;
  height: 50px;
  border-radius: 25px;
  padding: 20px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 10px;
  color: white;
  background-color: #1f1f1f;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
}
.reservation-container #reservation .reservation__content form #typeService {
  display: none;
}
.reservation-container #reservation .reservation__content form .reservation__content__form__payMethode {
  display: flex;
  font-size: 17px;
  width: 75%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 10px;
}
.reservation-container #reservation .reservation__content form .reservation__content__form__payMethode input {
  width: 20px;
  box-shadow: none;
  margin: 0;
  margin-right: 10px;
}
.reservation-container #reservation .reservation__content #reservation__content__order {
  width: 50%;
  display: none;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .reservation-container #reservation .reservation__content #reservation__content__order {
    width: 90%;
    margin-bottom: 50px;
  }
}
.reservation-container #reservation .reservation__content #reservation__content__order button {
  margin-top: 30px;
}
.reservation-container #reservation .reservation__content #reservation__content__order .reservation__content__order__infos {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #1f1f1f;
  border: 4px solid #1f1f1f;
  border-radius: 15px;
  transition: all ease 0.3s;
  line-height: 5px;
  font-size: 17px;
  font-family: "Space Grotesk", sans-serif;
  overflow: hidden;
  white-space: nowrap;
}
.reservation-container #reservation .reservation__content #reservation__content__order .reservation__content__order__infos h3 {
  color: #d5a709;
  text-align: center;
  font-size: 25px;
  text-shadow: 0px 0px 15px #d5a709;
  margin-bottom: 70px;
}
.reservation-container #reservation .reservation__content #reservation__content__order .reservation__content__order__infos p {
  color: #d5a709;
}
.reservation-container #reservation .reservation__content #reservation__content__order .reservation__content__order__infos strong {
  color: white;
}
.reservation-container #reservation .reservation__content #reservation__content__order .reservation__content__order__infos__price {
  text-align: right;
  font-size: 25px;
  font-weight: bold;
  text-shadow: 0px 0px 15px #d5a709;
  margin-top: 70px;
  margin-bottom: 0;
}
.reservation-container #reservation .reservation__content #reservation__content__order .reservation__content__order__infos__annulation {
  text-align: right;
  font-size: 15px;
  color: #d5a709;
  text-shadow: 0px 0px 15px #d5a709;
  white-space: wrap;
  line-height: 30px;
}
.reservation-container #reservation .reservation__content #reservation__content__order .reservation__content__order__infos:hover {
  box-shadow: 5px 10px 20px 10px rgba(0, 0, 0, 0.2470588235);
  border: 4px solid #d5a709;
}

#google-maps {
  width: 100%;
  height: 900px;
  z-index: 0;
}

#loader {
  display: none;
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
}

#loader:before {
  content: "";
  width: 48px;
  height: 5px;
  background: #1f1f1f;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow1 0.5s linear infinite;
}

#loader:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #1f1f1f;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump1 0.5s linear infinite;
}

@keyframes jump1 {
  15% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes shadow1 {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}
#payment-form {
  display: none;
  width: 50%;
  max-width: 500px;
  margin-left: 20px;
  height: 300px;
  background-color: #1f1f1f;
  border-radius: 15px;
  font-size: 17px;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #payment-form {
    width: 90%;
    margin-left: 0;
  }
  #payment-form button {
    margin-left: 0;
  }
}
#payment-form button {
  margin-left: 60%;
  color: black;
  background-color: #d5a709;
}
@media (max-width: 1024px) {
  #payment-form button {
    margin-left: 0;
  }
}
#payment-form label {
  color: #d5a709;
  font-size: 20px;
  text-shadow: 0px 0px 15px #d5a709;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: bold;
}

#card-errors {
  color: #FFC7EE;
  text-align: center;
}

#confirmation-message {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 400px;
  font-size: 30px;
  background-color: #1f1f1f;
  color: #d5a709;
  font-family: "Space Grotesk", sans-serif;
  font-weight: bold;
  text-shadow: 0px 0px 15px #d5a709;
  border-radius: 15px;
  text-align: center;
}

header {
  background-color: #1f1f1f;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  height: 50px;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: bold;
}
@media (max-width: 1024px) {
  header {
    font-size: 8px;
  }
}
@media (max-width: 1440px) {
  header {
    padding-left: 10%;
    padding-right: 10%;
  }
}
header img {
  width: 50px;
}
header nav ul {
  list-style: none;
  display: flex;
}
header nav ul li {
  margin-right: 30px;
}
header nav ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}
header nav ul li a:hover {
  color: #d5a709;
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
}
header .banner-infos {
  display: flex;
  align-items: center;
  color: white;
}
header .banner-infos i {
  font-size: 25px;
  width: 28px;
  color: #d5a709;
}
header .banner-infos__lang {
  margin-left: 30px;
}
header .banner-infos__lang select {
  border: none;
  padding: 3px;
  background-color: black;
  color: white;
}
header .banner-infos__lang select:hover {
  background-color: #d5a709;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .waves-top {
  width: 100%;
  margin-bottom: -5px;
}
footer .footer__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  background-color: #d5a709;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  padding-left: 20%;
  padding-right: 20%;
}
@media (max-width: 768px) {
  footer .footer__content {
    font-size: 20px;
  }
}
footer .footer__content #footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  font-weight: bold;
}
footer .footer__content #footer__contact i {
  font-size: 35px;
  width: 38px;
  color: black;
}
footer .footer__content .footer__infos {
  text-align: center;
}
footer .footer__content .footer__infos ul {
  list-style: none;
  padding-left: 0;
}
footer .footer__content .footer__infos a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer__content .footer__infos a:hover {
  color: white;
}
footer .footer__content #footer__mentions {
  text-align: center;
  font-size: 14px;
}

.banner {
  background-color: #1f1f1f;
  display: flex;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
  height: 600px;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
@media (max-width: 1440px) {
  .banner {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (min-width: 1700px) {
  .banner {
    height: 800px;
  }
}
.banner__content {
  width: 60%;
}
@media (max-width: 768px) {
  .banner__content {
    margin-top: -150px;
    width: 90%;
  }
}
.banner__content h1 {
  color: white;
  font-size: 75px;
  margin-bottom: 100px;
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  letter-spacing: 10px;
  text-shadow: 50px 20px 9px rgba(0, 0, 0, 0.8);
}
.banner__content h1 span {
  color: #d5a709;


}


@media (max-width: 2000px) {
  .banner__content h1 span  {
    font-size: 60px;
  }
}

@media (max-width: 1700px) {
  .banner__content h1 span  {
    font-size: 45px;
  }
}
@media (max-width: 1260px) {
  .banner__content h1 span  {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  .banner__content h1 span  {
    font-size: 25px;
  }
}
@media (max-width: 890px) {
  .banner__content h1 span  {
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  .banner__content h1 span  {
    font-size: 18px;
    margin-bottom: 200px;
    margin-top: 50px;
  }
}
@media (max-width: 450px) {
  .banner__content h1 span  {
    font-size: 15px;
    margin-top: 100px;
  }

}


@media (min-width: 1700px) {
  .banner__content h1 {
    font-size: 90px;
  }
}
@media (max-width: 1260px) {
  .banner__content h1 {
    font-size: 65px;
  }
}
@media (max-width: 1024px) {
  .banner__content h1 {
    font-size: 55px;
  }
}
@media (max-width: 890px) {
  .banner__content h1 {
    font-size: 50px;
  }
}
@media (max-width: 550px) {
  .banner__content h1 {
    font-size: 40px;
    margin-bottom: 200px;
    margin-top: 50px;
  }
}
@media (max-width: 450px) {
  .banner__content h1 {
    font-size: 30px;
    margin-top: 100px;
  }
}
.banner img {
  position: absolute;
  right: 14%;
  width: 50%;
}
@media (min-width: 1440px) {
  .banner img {
    width: 45%;
    max-width: 900px;
  }
}
@media (max-width: 1440px) {
  .banner img {
    right: 9%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .banner img {
    width: 75%;
    right: -15%;
  }
}

#cars {
  padding-left: 20%;
  padding-right: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  #cars {
    padding-left: 5%;
    padding-right: 5%;
  }
}
#cars h2 {
  color: #d5a709;
  text-shadow: 0px 0px 15px #d5a709;
}
#cars .line-title {
  border-bottom: 6px solid #d5a709;
}
#cars .cars__infos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
}
#cars .cars__infos h3 {
  color: white;
  font-size: 40px;
}
@media (max-width: 768px) {
  #cars .cars__infos h3 {
    font-size: 25px;
  }
}
#cars .cars__infos p {
  color: #d5a709;
  font-size: 20px;
}
#cars .cars__infos img {
  width: 50%;
}
#cars .cars__infos__text {
  text-align: center;
  width: 50%;
}
#cars a {
  margin-top: 50px;
  margin-bottom: 50px;
}

#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 250px;
}
#services h2 {
  color: #d5a709;
  text-shadow: 0px 0px 15px #d5a709;
}
#services .line-title {
  border-bottom: 6px solid #d5a709;
}
#services .services__slider {
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 30px;
  width: 50%;
  max-width: 600px;
  height: 700px;
  border-radius: 10px;
  box-shadow: 0 100px 100px black;
}
@media (max-width: 1024px) {
  #services .services__slider {
    width: 80%;
  }
}
#services .services__slider:hover {
  box-shadow: 0 1px 100px #d5a709;
  transition: box-shadow 0.5s ease;
}
#services .services__slider__cards {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
#services .services__slider__cards__card {
  flex: 0 0 100%;
  /* Pour s'assurer que chaque carte prend toute la largeur */
  background-color: #d5a709;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#services .services__slider__cards__card img {
  width: 100%;
  height: 80%;
}
#services .services__slider__cards__card p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: black;
  text-align: center;
  font-weight: 700;
}
#services .services__slider__cards__card button {
  max-width: 200px;
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: #d5a709;
  background-color: #1f1f1f;
}
#services .services__slider__cards__card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#services .services__slider__cards__card button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
#services .services__slider__cards__card button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
#services .services__slider__cards__card button::after {
  background-color: black;
}
#services .services__slider__cards__card button:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
#services .services__arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
}
#services .services__arrow button {
  border: 2px solid #d5a709;
  width: 45px;
  height: 45px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transform: rotate(90deg);
}
#services .services__arrow .arrow path {
  fill: white;
}
#services .services__arrow button:hover .arrow {
  animation: slide-in-bottom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#services .services__arrow #prev {
  transform: rotate(270deg);
}

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