@charset "utf-8";
/* CSS Document */



.description-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #00A693;
  text-align: center;
  margin-top: 70px;
  border-bottom: 3px solid #00A693; /* Couleur et épaisseur du trait de soulignement */
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.colorable-border {
  transition: border-color 3s ease;
  border-bottom-color: color;
}



.description-textlogement {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  border-top: 3px solid #00A693; /* Trait au-dessus */
  border-bottom: 3px solid #00A693; /* Trait en dessous */
  padding: 30px 0;
  margin: 50px auto;
  width: 90%;
  max-width: 800px;
}

.description-textlogement.colorable-border {
  border-color: var(--color);
  transition: border-color 3s ease;
}

.description-textlogement p {
  margin-bottom: 20px;
}




/* Styles pour les écrans plus larges (ordinateurs et tablettes) */
@media screen and (min-width: 768px) {
  .description {
    max-width: 1000px; /* Largeur maximale du texte */
    margin: 0 auto; /* Centrer le texte horizontalement */
  }
}

/* Styles pour les écrans plus étroits (téléphones) */
@media screen and (max-width: 767px) {
  .description p {
    display: block; /* Afficher chaque paragraphe sur une ligne séparée */
    margin-bottom: 10px; /* Ajouter une marge inférieure entre les paragraphes */
  }
}

.recap-table {
  background-color: #00A693;
  color: #FFFFFF;
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.recap-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center; /* Ajoutez cette ligne pour centrer le texte */
}

.recap-table th,
.recap-table td {
  border: 1px solid #FFFFFF;
  padding: 10px;
}

.recap-table th {
  background-color: #FFFFFF;
  color: #00A693;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
}




.button-container {
  text-align: center;
  margin-top: 30px;
	margin-bottom: 60px;
}

.reservation-button {
  display: inline-block;
  background-color: #00A693;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  padding: 10px 40px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Ajout de l'ombre portée */
}

.reservation-button:hover {
  background-color: #008E7B;
}


@media (max-width: 768px) {
  .description-paragraph:not(:first-child) {
    display: none;
  }
}