/* 🌿 hulp.css */
/* =============================================== */
/* 🧭 Algemene layout */
body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* =============================================== */
/* 💚 Hero sectie */
.hulp-hero {
  position: relative;
  background: url("/assets/img/hulpBG.png") center/cover no-repeat;
  color: #fff;
  padding: 6rem 1rem 4rem;
  overflow: hidden;
}

.hulp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 25, 0.8); /* donkergroene overlay */
  z-index: 1;
}

.hulp-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 550px;
  color: #f2f2f2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  margin-top: 1.5rem;
}

.hero-buttons a {
  margin-right: 1rem;
}

.hero-image {
  flex: 1 1 45%;
  text-align: center;
}

.hero-image img {
  width: 60%;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* =============================================== */
/* 🧭 Aanmeldformulier */
.hulp-aanmelding {
  background: #f5f5f5;
  padding: 5rem 1rem;
  text-align: center;
}

.hulp-aanmelding h2 {
  color: #1e6f43;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hulp-aanmelding p {
  color: #444;
  margin-bottom: 2rem;
}

.hulp-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.hulp-form label {
  display: block;
  font-weight: 600;
  color: #1e6f43;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

.hulp-form input,
.hulp-form textarea,
.hulp-form select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hulp-form input:focus,
.hulp-form textarea:focus,
.hulp-form select:focus {
  border-color: #1e6f43;
  box-shadow: 0 0 0 3px rgba(30,111,67,0.15);
  outline: none;
}

.form-buttons {
  margin-top: 2rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #1e6f43;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #145c36;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: #1e6f43;
}

/* =============================================== */
/* 💚 Bedanksectie */
.hulp-thanks {
  background: #1e6f43;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.hulp-thanks h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

/* =============================================== */
/* 📱 Responsief */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hulp-form {
    padding: 1.5rem;
  }
}
.alert {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.alert-error {
  background: #ffefef;
  color: #b20000;
  border: 1px solid #e0b4b4;
}

.alert-success {
  background: #e7f5ee;
  color: #1e6f43;
  border: 1px solid #b5e1c5;
}
/* =============================================== */
/* 💌 Verbeterde bedanksectie */
.hulp-thanks.verbeterd {
  position: relative;
  background: url("/assets/img/hulpBG.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 8rem 1rem;
  overflow: hidden;
}

.hulp-thanks.verbeterd .thanks-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 25, 0.8);
  z-index: 1;
}

.hulp-thanks.verbeterd .container {
  position: relative;
  z-index: 2;
}

.thanks-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.8s ease-out;
}

.thanks-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.thanks-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.thanks-card p {
  color: #e9f9ee;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}


.thanks-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ✨ Animaties */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
