/* ====== CONTACT FORM - STYLE UNIFIÉ FR/DE ====== */

.contact-form {
  background-color: #f6efe4;
  border: 1px solid #d8b68a;
  border-radius: 8px;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  color: #3e2c16;
}

.contact-form h2 {
  font-size: 22px;
  font-weight: 600;
  color: #5a2f15;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form p {
  margin: 10px 0;
}

.contact-form label {
  display: inline-block;
  width: 130px;
  font-weight: 600;
  color: #4b2d18;
  vertical-align: top;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="file"],
.contact-form textarea {
  width: calc(100% - 140px);
  max-width: 340px;
  padding: 6px 8px;
  border: 1px solid #cfa97d;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  color: #3e2c16;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-captcha-box {
  display: inline-block;
  background: #fff6e5;
  padding: 6px 10px;
  border: 1px solid #d6b080;
  font-weight: bold;
  margin-right: 10px;
  border-radius: 4px;
}

.contact-form button {
  background-color: #8b5a2b;
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 600;
}

.contact-form button:hover {
  background-color: #a96b36;
}

.contact-errors {
  background: #fff0f0;
  border: 1px solid #d66;
  color: #a00;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.contact-errors ul {
  list-style: none;
  padding-left: 10px;
  margin: 0;
}

.contact-success {
  background: #f2fff2;
  border: 1px solid #6b6;
  color: #2a662a;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

/* Version responsive */
@media (max-width: 600px) {
  .contact-form label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form input[type="file"] {
    width: 100%;
    max-width: none;
  }
}
