/* contact.css - Ventabren.info */

.contact-intro-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px 10px;
  text-align: center;
}

.contact-intro-accroche {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: #b68b52;
  margin: 0 0 16px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .contact-intro-accroche {
    white-space: normal;
  }
}

.contact-intro-texte {
  font-size: 17px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0;
}

.contact-intro-ligne {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .contact-intro-ligne {
    white-space: normal;
  }
}

.contact-page {
  background: #f7f5f0;
  color: #2f2f2f;
  min-height: 60vh;
}

/* Champ piège anti-spam (honeypot) : invisible pour un visiteur
   humain, mais présent dans le code source pour piéger les robots
   qui remplissent automatiquement tous les champs d'un formulaire. */
.vi-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 175px 30px 40px;
  text-align: center;
}

.contact-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 44px;
  color: #2f2f2f;
  margin: 0 0 16px;
}

.contact-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

.contact-form-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 30px 100px;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 55px rgba(0,0,0,.07);
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field-full {
  margin-bottom: 24px;
}

.contact-field label {
  font-size: 15px;
  font-weight: 600;
  color: #b68b52;
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.contact-field input,
.contact-field textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e0d8c8;
  background: #fbfaf7;
  font-size: 18px;
  font-family: inherit;
  color: #2f2f2f;
  outline: none;
  transition: border-color .2s ease;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #b68b52;
}

.contact-submit {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  background: #b68b52;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.contact-submit:hover {
  background: #9c744099;
  background: #a17842;
}

.contact-msg {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

.contact-msg-ok {
  background: #eaf3e6;
  color: #4f7a3d;
}

.contact-msg-error {
  background: #f6e6e2;
  color: #a3492f;
}

/* --- RESPONSIVE --- */
@media (max-width: 640px) {
  .contact-intro {
    padding: 110px 22px 30px;
  }

  .contact-intro h1 {
    font-size: 32px;
  }

  .contact-form-section {
    padding: 10px 18px 70px;
  }

  .contact-form {
    padding: 26px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-field {
    margin-bottom: 20px;
  }
}
