section {
  padding: 100px 15%;
}
.hero {
  min-height: 75vh;
  background-image: url("/images/fond-contact.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--color-white);
  padding: 5%;
  text-align: center;
}
.contact-info-section {
  display: flex;
  gap: 60px;
  align-items: center;
  background: var(--color-white);
}

/* colonnes */
.contact-info-left {
  width: 40%;
}

.contact-info-right {
  width: 60%;
}

/* intro */
.contact-intro {
  margin-bottom: 28px;
  font-size: 1.1rem;
  font-weight: 500;
}

/* bloc contact */
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-method img {
  width: 36px;
  height: 36px;
}

/* labels */
.method {
  font-weight: 600;
}

.contact-value {
  color: var(--color-gold);
  font-weight: 500;
}

/* MAP */
.contact-info-right iframe {
  width: 100%;
  height: 380px;
  border: solide var(--color-light-gray) 2px;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 8px;
}
.btn-gold {
  color: white;
  border: solid 1px var(--color-gold);
}
.btn-gold-empty {
  border: solid 1px var(--color-gold);
  color: var(--color-gold);
  font-weight: bold;
}
.btn-gold-empty:hover {
  transform: translateY(-2px);
}
.bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 15%;
  background-image: url("/images/fond-bottom-contact.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  gap: 74px;
  color: white;
}
.bottom-left {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.bottom-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}
.fiche-form {
  width: 500px;
  background-color: var(--color-white);
  margin-bottom: -200px;
}

.bottom .big-gold {
  color: var(--color-white);
  font-weight: bold;
}
.bottom .reserv {
  margin-top: 24px;
}
.transition {
  height: 100px;
  width: 100%;
  background-color: var(--color-black);
}

.fiche-form {
  padding: 36px;
  color: var(--color-black);
}
.fiche-form h3 {
  padding-bottom: 24px;
  margin-bottom: 36px;
  border-bottom: solid var(--color-light-gray) 0.1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  border: none;
  margin-bottom: 8px;
  padding: 16px;
  font-family: "Barlow", sans-serif;
}
.contact-form button {
  border: none;
  color: white;
  width: 100%;
  margin-top: 24px;
}
a.reserv svg {
  color: var(--color-gold);
}
.contact-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
a.reserv {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  width: fit-content;
  gap: 12px;
}
.big-gold {
  font-size: 1.5rem;
  color: var(--color-gold);
}
.paiement {
  font-size: 0.9rem;
  line-height: 1rem;
  color: var(--color-black);
  opacity: 0.8;
}
@media (max-width: 1600px) {
  .bottom,
  section {
    padding: 100px 10%;
  }
}
@media (max-width: 1200px) {
  section,
  .bottom {
    padding: 90px 8%;
  }
}
@media (max-width: 1024px) {
  section,
  .bottom {
    padding: 80px 7%;
  }

  .bottom {
    flex-direction: column;
    gap: 28px;
    background-attachment: scroll;
  }

  .bottom-left,
  .bottom-right {
    width: 100%;
  }

  .bottom-right {
    align-items: center;
  }

  .fiche-form {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section,
  .bottom {
    padding: 70px 6%;
  }
  .contact-info-section {
    flex-direction: column;
  }
  .contact-info-left,
  .contact-info-right {
    width: 100%;
  }
}
@media (max-width: 500px) {
  section,
  .bottom {
    padding: 60px 5%;
  }

  .bottom-left {
    align-items: center;
  }

  .bottom-left h3 {
    text-align: center;
  }

  .fiche-form {
    max-width: none;
  }
}
