.contact-section {
    background-color: #f5f5f5;
    padding: 4rem 1rem;
}

.contact-container {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.contact-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.contact-container p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    resize: vertical;
}

.form-button {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-form .btn {
    background-color: #b49c73;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #998457;
 
}


.confirmation-banner {
  max-width: 600px;
  margin: 20px auto 0;
  padding: 15px 20px;
  background-color: #f5f5f5; /* ton fond contact-section clair */
  color: #222;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  border: 2px solid #b49c73; /* bordure or */
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(180, 156, 115, 0.4);
  position: relative;
  opacity: 0;
  animation: fadeInSlideDown 0.8s ease forwards;
}

.confirmation-banner.show {
  opacity: 1;
}

@keyframes fadeInSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.confirmation-banner .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: #b49c73;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

.confirmation-banner .close-btn:hover {
  color: #998457;
}

