/* 🎨 Algemene layout voor de contactpagina */
.contact-hero {
  background: linear-gradient(135deg, #d6b4f3 0%, #f3e8fd 100%);
  text-align: center;
  padding: 80px 20px 50px;
  color: #333;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* 📦 Introbox “Contacteer Ons” */
.contacteer-ons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #ead9ff, #f5eaff);
  text-align: center;
  box-sizing: border-box;
}

.contacteer-ons-box {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  width: 100%;
}

.contacteer-ons-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.contacteer-ons-box p {
  font-size: 18px;
  color: #555;
  margin: 0;
}

/* 🧾 Contactcontainer */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-form,
.contact-map {
  flex: 1 1 400px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 📧 Formulierstijl */
.contact-form h2,
.contact-map h2 {
  color: #a736f3;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  font-size: 15px;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}

.contact-form button {
  background-color: #a736f3;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

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

/* 🗺️ Google Maps */
.contact-map iframe {
  border-radius: 10px;
  width: 100%;
  height: 300px;
  border: 0;
}

/* 📱 Mobiele responsiviteit */
@media (max-width: 768px) {
  .contacteer-ons-box {
    padding: 30px 20px;
  }

  .contacteer-ons-box h2 {
    font-size: 26px;
  }

  .contacteer-ons-box p {
    font-size: 16px;
  }

  .contact-container {
    flex-direction: column;
    padding: 30px 15px;
  }

  .contact-form,
  .contact-map {
    padding: 20px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}