/* Hero section */
.contact-hero {
  position: relative;
  height: 400px;
}

.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero .overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.5);
}

.contact-hero .caption {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #BE8445;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
}

/* Formulaire */
.contact-form-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

#contactForm {
  background-color: #111;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 2px solid #BE8445;
}

#contactForm label {
  font-weight: 600;
  color: #BE8445;
}

#contactForm input,
#contactForm textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #BE8445;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #fff;
}

#contactForm button {
  background-color: #BE8445;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

#contactForm button:hover {
  background-color: #a71b1b;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
  #contactForm {
    width: 90%;
  }
}
