.main{
  color: gold;
  background-color: #000;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

.hero-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.hero-images {
  display: flex;
  height: 100%;
}

.hero-images img {
  width: 25%;
  object-fit: cover;
  height: 100%;
  filter: brightness(60%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: bold;
  color: #c2b5b5;
}

h2{
  display: flex;
  justify-content: center;
  font-size: 25px;
  text-align: center;
}

#p{
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 15px;
}

.buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.buttons .btn {
  background-color: #3a2929;
  color: #D4AF37;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.buttons .btn:hover {
  background-color: #D4AF37;
  color: #1e1e1e;
  transform: scale(1.03);
  opacity: 0.9;
}

.prestations-ligne {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 60px 20px;
  gap: 40px;
  flex-wrap: nowrap;
}

.prestation-bloc {
  display: flex;
  align-items: center;
}

.prestation-img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}

.texte-femme {
  max-width: 300px;
  text-align: center;
  color: gold;
}

.texte-homme {
  margin-left: 23px;
  max-width: 300px;
  text-align: center;
  color: gold;
}

.texte-femme h3,
.texte-homme h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.texte-femme p,
.texte-homme p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-prestations {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3a2929;
  color: #D4AF37;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-prestations:hover {
  background-color: #D4AF37;
  color: #1e1e1e;
}

.map-overlay-section {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 750px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-info-box {
  position: absolute;
  top: 120px;
  left: 40px;
  background-color: #000;
  color: gold;
  padding: 30px 25px;
  max-width: 360px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 10;
  font-family: 'Arial', sans-serif;
}

.map-info-box h2 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #FFD700;
}

.label {
  background-color: #4e3939;
  display: inline-block;
  padding: 6px 12px;
  color: white;
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-block {
  margin-bottom: 20px;
}

.btn-itineraire {
  background-color: #4e3939;
  color: gold;
  padding: 8px 14px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border-radius: 4px;
  margin-top: 8px;
  transition: 0.3s ease;
}

.btn-itineraire:hover {
  background-color: gold;
  color: #1e1e1e;
}

.social-icons a img {
  width: 22px;
  margin-right: 10px;
}


.test{
  border-bottom: 2px solid gold;
}

a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
}


@media screen and (max-width: 768px) {

  .hero-images {
    flex-direction: column;
  }

  .hero-images img {
    width: 100%;
    height: auto;
  }

  .banner-text h4 {
    font-size: 2rem;
  }
  /* TEXTE PRINCIPAL */
  h2 {
    font-size: 18px;
    padding: 0 10px;
  }

  #p {
    font-size: 14px;
    padding: 0 15px;
  }

  /* SECTION PRESTATIONS */
  .prestations-ligne {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 10px;
  }

  .prestation-bloc {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .prestation-img {
    max-width: 100%;
  }

  .texte-femme, 
  .texte-homme {
    max-width: 100%;
    margin: 20px auto 0 auto;
  }

  .texte-homme{
    margin-left: 0;
  }

  /* CARTE MAPS ET INFOS */
  .map-container {
    height: auto;
    flex-direction: column-reverse;
    display: flex;
  }

  .map-info-box {
    position: relative;
    top: unset;
    left: unset;
    order: 1;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    padding: 20px;
    box-shadow: none;
    background-color: #000;
  }

  .map-container iframe {
    width: 100%;
    height: 400px;
    order: 2;
    display: block;
  }

  .social-icons a img {
    width: 20px;
    margin-right: 8px;
  }

  .map-info-box {
    text-align: center;
    align-items: center;
  }

  .map-info-box h2 {
    text-align: center;
  }

  .info-block {
    text-align: center;
    margin-bottom: 25px;
  }

  .label {
    display: inline-block;
    margin-bottom: 10px;
  }

  .btn-itineraire {
    margin: 10px auto 0 auto;
    display: inline-block;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .social-icons a {
    display: inline-block;
  }

  .social-icons a img {
    width: 26px;
    height: auto;
    margin: 0;
  }
}

