
.page-title h1{
    margin-bottom: 60px;
    text-align: center;
}

#container-form {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px; 
  flex-wrap: wrap; 
  margin-bottom: 50px;
 
}

/* Le bloc de texte à gauche */
.contact-info {
  flex: 1;
  min-width: 300px;   
}
 #remplir{
  
  padding-top: 15px;
  text-align: left;
  color:rgb(83, 83, 83);
 }

/* Le formulaire à droite */
#form {
  flex: 1; 
  min-width: 300px; 
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 40px;
  background-color: var(--color-light-blue);
  border-radius: 8px;
}
#confirmation-envoi{
  width: 1400px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}
/* --- Éléments du bloc info --- */
#detail {
  padding-left: 50px;
  margin-top: 15px;
  line-height: 2;
}
/* titre au dessus de la carte */
#rdv-place {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--color-blue);
}
 /* Configuration de la map*/   
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 70%;  /* <-- Augmenté ici pour donner plus de hauteur à la carte */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------*/

/* --- Éléments internes du Formulaire --- */
label {
  font-size: var(--fs-24);
  color: var(--color-blue);
  font-weight: 500;
}

.name-field {
  display: flex;
  gap: 15px;
  width: 100%;
}

.name-field > div {
  flex: 1;
}

.name-field input {
  width: 100%;
}

.email, .telephone, .sujet, .message-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

input {
  height: 35px;
  font-size: 16px;
  padding: 15px 15px;
  border-radius: 5px;
  border: none;
  background-color: white;
  margin-top: 10px;
}

.mesag {
  font-size: 16px;
  padding: 10px 10px;
  border: none;
  border-radius: 5px;
  background-color: white;
  margin-top: 10px;
}

/* --- Bouton --- */
.bouton {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bouton .bp {
  height: auto;
  margin-top: 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-blue);
  background-color: var(--color-yellow);
}

.bouton input:hover {
  background-color: var(--color-blue);
  color: var(--color-off-white);
  font-weight: bold;
}

/* ------------------------- Responsive de la section Contact ------------------------------ */
@media (max-width: 1903px) {
  #titre {
    font-size: var(--fs-30);
  }
  label {
    font-size: var(--fs-18);
  }
}

@media (max-width: 1205px) {
  .container-contact {
    margin-top: 150px;
  }
  /* Plus de "form { width: 80% }" i
  .mesag {
    font-size: 16px;
 ci pour ne pas casser le flexbox */
}

@media (max-width: 480px) {
  #container-form {
    /* background-image: none; */
    padding-top: 10px;
    padding-bottom: 20px;
    height: auto; /* Laissez le cont
  .mesag {
    font-size: 16px;
 enu dicter la hauteur plutôt que 140vh */
    width: 100%;
  }
  
  #form {
    padding: 20px 20px;
  }

  #titre {
    font-size: 24px;
    margin-bottom: 25px;
  }

  label {
    font-size: 16px;
  }

  input {
    height: 20px;
    font-size: 15px;
  }

  .mesag {
    font-size: 15px;
  }
  .bouton .bp {
  margin-top: 5px;
  font-size: 16px;
 
}

}