.prestations-list {
  width: 100%;
}

.prestation-bloc {
  padding: 60px 20px;
  color: #422815;
}

.prestation-bloc.alternate {
  background-color: #FDFAF7;
}

.prestation-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.prestation-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #422815;
}

.prestation-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

.reservation-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #F6E9D8;
  padding: 30px;
  border-radius: 10px;
  color: #422815;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.reservation-form h2 {
  text-align: center;
  margin-bottom: 25px;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

form select {
  cursor: pointer;
}

form button {
  background-color: #422815;
  color: white;
  border: none;
  padding: 14px 20px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #5a3a22;
}


#contact
  {
  width: 80%;
  height: 100%;
  margin: 35px auto 0 auto;
  }
#contact #bloccontact
  {
  width: 100%;
  height: auto;
  padding: 0 0 25px 0;
  }
#contact #bloccontact .mainsstitle { width: 100%; height: 100%; font-size: 15pt; font-weight: bold; text-align: left; color: #333; }
#contact #bloccontact .frmchampleft
  {
  float: left;
  width: 48%;
  height: auto;
  margin-top: 15px;
  }
#contact #bloccontact .frmchampright
  {
  float: right;
  width: 48%;
  height: auto;
  margin-top: 15px;
  }
#contact #bloccontact .frmcaptcha
  {
  width: 303px;
  margin: 15px auto 0 auto;
  float: left;
  }
#contact #bloccontact input
  {
  width: 100%;
  height: 45px;
  border: 0;
  font-size: 12pt;
  background-color: #FFFFFF;
  padding: 0 0 0 15px;
  }
#contact #bloccontact textarea
  {
  width: 100%;
  height: 180px;
  padding: 15px 0 0 15px;
  display: block;
  vertical-align: top;
  border: 0;
  font-size: 12pt;
  background-color: #FFFFFF;
  font-family: Arial, sans-serif;
  }

.btnenvoimessage
  {
  width: 310px;
  height: 50px;
  line-height: 50px;
  margin: 35px auto 0 auto;
  float: right;
  }
.btnenvoimessage a
  {
  display: block;
  width: 310px;
  height: 50px;
  background-color: #422815;
  font-size: 16pt;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 50px;
  text-align: center;
  transition: all .4s ease-in-out;
  }
.btnenvoimessage a:hover
  {
  background-color: #613A1F;
  color: #FFFFFF;
  }

.clear { clear: both; }

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.confirmation-message {
  max-width: 600px;
  margin: 60px auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.confirmation-message h1 {
  color: #422815;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.confirmation-message p {
  font-size: 1.1rem;
  color: #555;
  margin: 10px 0;
}

.confirmation-message .btn-retour {
  display: inline-block;
  margin-top: 25px;
  background-color: #422815;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.confirmation-message .btn-retour:hover {
  background-color: #5a3a22;
}

/* Responsive */
@media (max-width: 600px) {
  .confirmation-message {
    margin: 30px 10px;
    padding: 30px 15px;
  }

  .confirmation-message h1 {
    font-size: 1.4rem;
  }

  .confirmation-message p {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Appliquer l'animation */
.confirmation-message {
  animation: fadeSlideIn 0.8s ease forwards;
  opacity: 0; /* nécessaire pour que l'animation ait un effet */
}


.select-wrapper {
  width: 100%;
  box-sizing: border-box;
}

.select-wrapper select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #000000;
  font-size: 15px;
}

.select-wrapper select:disabled {
  background-color: #eee;
  cursor: not-allowed;
}


.step-banner {
  background-color: #e0f7fa;       /* couleur douce, bleu clair */
  border-left: 5px solid #00796b;  /* accent couleur verte/bleue */
  padding: 15px 20px;
  margin: 15px 0 30px 0;
  font-size: 0.9em;
  color: #004d40;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 550px) {
  .step-banner {
    font-size: 0.7em;
  }
}

.step-banner p {
  margin: 0;
}


.info-box {
  display: flex;
  align-items: flex-start;
  background-color: #ffcc80;  /* orange clair */
  border-left: 6px solid #fb8c00; /* orange plus foncé */
  padding: 15px 20px;
  border-radius: 5px;
  color: #5d4037; /* brun foncé */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0 auto 30px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 650px;
}

.info-icon {
  font-weight: bold;
  font-size: 24px;
  background-color: #fb8c00; /* orange foncé */
  color: white;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 15px;
  user-select: none;
}

.info-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.info-content ol {
  padding-left: 20px;
  margin: 0 0 10px 0;
}

.info-content ol li {
  margin-bottom: 6px;
}

.info-content p {
  margin: 0;
}

.info-content a {
  color: #5d4037;
  font-weight: bold;
  text-decoration: underline;
}

.info-content a:hover {
  color: #fb8c00;
}

@media (max-width: 700px) {
  .info-box {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 14px;
  }
  
 .info-content h3 {
    font-size: 16px; 
  }
  
  .info-content ol li {
    margin-bottom: 4px; 
  }  
}
