/* =========================================================
   Hoekse Rakkers — Contactpagina
   Geschikt voor WordPress en Elementor

   Huisstijl:
   - Blauw:  #0057A0
   - Donker: #003C70
   - Geel:   #FFC629
   - Tekst:  #111111
   - Wit:    #FFFFFF
   ========================================================= */


/* =========================================================
   ALGEMEEN
   ========================================================= */

.hr-contactpage,
.hr-contactpage * {
  box-sizing: border-box;
}

.hr-contactpage {
  width: 100%;
  padding: 40px 16px 80px;

  color: #111111;

  background:
    radial-gradient(
      1200px 400px at 50% -120px,
      #eaf3fb,
      transparent
    ),
    #ffffff;

  font-family:
    "Nunito",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 16px;
  line-height: 1.6;
}

.hr-contactpage__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.hr-sr-only {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;

  border: 0 !important;
}


/* =========================================================
   KOP
   ========================================================= */

.hr-contactpage__head {
  margin: 0 0 40px;
  text-align: center;
}

.hr-contactpage__head h1 {
  margin: 0 0 10px;

  color: #0057a0;

  font-family:
    "RocknRoll One",
    "Nunito",
    sans-serif;

  font-size: clamp(28px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
}

.hr-contactpage__head p {
  max-width: 56ch;
  margin: 0 auto;

  color: #425e78;

  font-size: 17px;
  line-height: 1.6;
}


/* =========================================================
   HOOFDLAY-OUT
   ========================================================= */

.hr-contactgrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: 28px;
}

.hr-contactgrid > * {
  min-width: 0;
}


/* =========================================================
   INFORMATIEKAART
   ========================================================= */

.hr-infocard {
  padding: 32px 28px;

  background: #0057a0;
  color: #ffffff;

  border-radius: 26px;

  box-shadow:
    0 16px 40px rgba(0, 87, 160, 0.22);
}

.hr-infocard h2 {
  margin: 0 0 18px;

  color: #ffffff;

  font-family:
    "RocknRoll One",
    "Nunito",
    sans-serif;

  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}


/* =========================================================
   CONTACTGEGEVENS
   ========================================================= */

.hr-infolist {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin: 0 0 24px;
  padding: 0;

  list-style: none;
}

.hr-infolist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin: 0;
  padding: 0;

  color: #ffffff;
}

.hr-infolist a,
.hr-infolist a:link,
.hr-infolist a:visited {
  color: #ffffff;

  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.hr-infolist a:hover,
.hr-infolist a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.hr-infolist a:focus-visible {
  outline: 3px solid #ffc629;
  outline-offset: 3px;
  border-radius: 3px;
}

.hr-infoicon {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  flex-shrink: 0;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.14);
  color: #ffc629;
}

.hr-infoicon svg {
  display: block;
  width: 20px;
  height: 20px;
}


/* =========================================================
   SOCIALE MEDIA
   ========================================================= */

.hr-infocard__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hr-infocard__socials a {
  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;

  text-decoration: none;

  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.hr-infocard__socials a:link,
.hr-infocard__socials a:visited {
  color: #ffffff;
}

.hr-infocard__socials a:hover,
.hr-infocard__socials a:focus {
  background: #ffc629;
  color: #111111;

  transform: translateY(-2px);
}

.hr-infocard__socials a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.hr-infocard__socials svg {
  display: block;
  width: 20px;
  height: 20px;
}


/* =========================================================
   FORMULIERKAART
   ========================================================= */

.hr-formcard {
  padding: 32px 28px;

  background: #ffffff;

  border: 2px solid #eaf3fb;
  border-radius: 26px;

  box-shadow:
    0 16px 40px rgba(0, 87, 160, 0.1);
}


/* =========================================================
   FORMULIERVELDEN
   ========================================================= */

.hr-field {
  margin: 0 0 18px;
}

.hr-field label {
  display: block;

  margin: 0 0 7px;

  color: #111111;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.hr-field .hr-req {
  color: #c62828;
}

.hr-field input,
.hr-field textarea {
  display: block;

  width: 100%;
  max-width: 100%;

  margin: 0;
  padding: 13px 15px;

  border: 2px solid #dbe7f2;
  border-radius: 14px;

  background: #f6f9fc;
  color: #111111;

  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  box-shadow: none;

  appearance: none;
  -webkit-appearance: none;

  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.hr-field input:hover,
.hr-field textarea:hover {
  border-color: #b8ccdd;
}

.hr-field input:focus,
.hr-field textarea:focus {
  outline: none;

  background: #ffffff;
  border-color: #0057a0;

  box-shadow:
    0 0 0 4px rgba(0, 87, 160, 0.14);
}

.hr-field textarea {
  min-height: 150px;
  resize: vertical;
}

.hr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.hr-hp {
  position: absolute !important;
  left: -9999px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;
}


/* =========================================================
   REKENSOM
   ========================================================= */

.hr-captcha {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0 0 20px;
  padding: 12px 15px;

  background: #fff9e6;

  border: 2px dashed #d99f00;
  border-radius: 14px;
}

.hr-captcha label {
  margin: 0;

  color: #594700;

  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
}

.hr-captcha input {
  display: block;

  width: 90px;
  height: auto;

  margin: 0;
  padding: 10px 12px;

  background: #ffffff;
  color: #111111;

  border: 2px solid #e0c25a;
  border-radius: 10px;

  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;

  box-shadow: none;

  appearance: textfield;
  -moz-appearance: textfield;
}

.hr-captcha input::-webkit-inner-spin-button,
.hr-captcha input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.hr-captcha input:focus {
  outline: none;

  border-color: #0057a0;

  box-shadow:
    0 0 0 4px rgba(0, 87, 160, 0.14);
}


/* =========================================================
   GELE VERZENDKNOP
   Specifieke selectors voorkomen rode themastijlen
   ========================================================= */

.hr-contactpage .hr-formcard button.hr-submit,
.hr-contactpage .hr-formcard .hr-submit {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 54px;

  margin: 0;
  padding: 15px 24px;

  border: 0 !important;
  border-radius: 999px;

  background: #ffc629 !important;
  background-color: #ffc629 !important;
  color: #111111 !important;

  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0;
  white-space: normal;

  box-shadow:
    0 6px 0 #d99f00;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.hr-contactpage .hr-formcard button.hr-submit:hover,
.hr-contactpage .hr-formcard .hr-submit:hover {
  background: #ffd452 !important;
  background-color: #ffd452 !important;
  color: #000000 !important;

  transform: translateY(-2px);

  box-shadow:
    0 8px 0 #d99f00;
}

.hr-contactpage .hr-formcard button.hr-submit:focus,
.hr-contactpage .hr-formcard .hr-submit:focus {
  background: #ffd452 !important;
  background-color: #ffd452 !important;
  color: #000000 !important;
}

.hr-contactpage .hr-formcard button.hr-submit:focus-visible,
.hr-contactpage .hr-formcard .hr-submit:focus-visible {
  outline: 3px solid #0057a0;
  outline-offset: 4px;
}

.hr-contactpage .hr-formcard button.hr-submit:active,
.hr-contactpage .hr-formcard .hr-submit:active {
  background: #ffc629 !important;
  background-color: #ffc629 !important;
  color: #111111 !important;

  transform: translateY(3px);

  box-shadow:
    0 3px 0 #d99f00;
}


/* =========================================================
   MELDINGEN
   ========================================================= */

.hr-note {
  display: none;

  margin: 0 0 20px;
  padding: 14px 16px;

  border-radius: 14px;

  font-weight: 700;
  line-height: 1.5;
}

.hr-note.is-visible {
  display: block;
}

.hr-note--error {
  background: #fdecee;
  color: #8f1f24;

  border: 2px solid #e5a6aa;
}

.hr-note--ok {
  background: #e7f6ec;
  color: #145c2e;

  border: 2px solid #94cfa9;
}


/* =========================================================
   PRIVACYTEKST
   ========================================================= */

.hr-privacy {
  margin: 16px 0 0;

  color: #526d86;

  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.hr-privacy a,
.hr-privacy a:link,
.hr-privacy a:visited {
  color: #004d8c;

  font-weight: 700;
  text-decoration: underline;
}

.hr-privacy a:hover,
.hr-privacy a:focus {
  color: #111111;
}


/* =========================================================
   BESTUUR
   ========================================================= */

.hr-board {
  margin: 56px 0 0;
}

.hr-board__head {
  margin: 0 0 30px;
  text-align: center;
}

.hr-board__head h2 {
  margin: 0 0 8px;

  color: #0057a0;

  font-family:
    "RocknRoll One",
    "Nunito",
    sans-serif;

  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  line-height: 1.2;
}

.hr-board__head p {
  margin: 0;

  color: #4f6172;

  font-size: 16px;
  line-height: 1.5;
}

.hr-board__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.hr-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  padding: 26px 16px;

  background: #ffffff;

  border: 2px solid #e4ebf1;
  border-radius: 22px;

  text-align: center;

  box-shadow:
    0 8px 20px rgba(0, 87, 160, 0.06);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.hr-member:hover {
  border-color: #ffc629;

  transform: translateY(-4px);

  box-shadow:
    0 14px 28px rgba(0, 87, 160, 0.12);
}

.hr-member__avatar {
  display: grid;
  place-items: center;

  width: 72px;
  height: 72px;

  border-radius: 50%;

  background: #0057a0;
  color: #ffffff;

  font-family:
    "RocknRoll One",
    "Nunito",
    sans-serif;

  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;

  box-shadow:
    0 0 0 5px rgba(255, 198, 41, 0.9);
}

.hr-member__name {
  color: #111111;

  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 820px) {
  .hr-contactpage {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .hr-contactgrid {
    grid-template-columns: 1fr;
  }

  .hr-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hr-board__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 520px) {
  .hr-contactpage {
    padding: 24px 12px 48px;
  }

  .hr-contactpage__head {
    margin-bottom: 28px;
  }

  .hr-infocard,
  .hr-formcard {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .hr-captcha {
    align-items: flex-start;
    flex-direction: column;
  }

  .hr-captcha label {
    white-space: normal;
  }

  .hr-captcha input {
    width: 100%;
  }

  .hr-board {
    margin-top: 44px;
  }

  .hr-board__grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   VERMINDERDE BEWEGING
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .hr-infocard__socials a,
  .hr-field input,
  .hr-field textarea,
  .hr-submit,
  .hr-member {
    transition: none;
  }

  .hr-infocard__socials a:hover,
  .hr-submit:hover,
  .hr-submit:active,
  .hr-member:hover {
    transform: none;
  }
}