:root {
  --navy: #0B4F6C;
  --navy-deep: #08394F;
  --gold: #00A6A6;
  --gold-light: #17bfbf;
  --ink: #2f4450;
  --grey: #6b8291;
  --light: #EFF7F9;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  /* regenboog exact uit het logo gehaald */
  --rainbow: linear-gradient(90deg, #ea4419 0%, #f8be17 16%, #e2df18 32%, #3daa34 48%, #13a392 64%, #2590d2 80%, #1f4396 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a {
  color: var(--navy);
}

/* Regenboogstreep over de volle breedte, bij elke kleurovergang */
.rainbow {
  height: 5px;
  width: 100%;
  background: var(--rainbow);
  display: block;
}

/* Melding - navy, zelfde kleur als de sectie en footer verderop */
.notice {
  background: var(--navy);
  color: #d6eaf1;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  letter-spacing: .2px;
}

/* Header */
header {
  background: #fff;
  padding: 24px 0;
}

.hdr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 82px;
  width: auto;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(8, 57, 79, .88) 0%, rgba(8, 57, 79, .60) 42%, rgba(8, 57, 79, .12) 75%), url('img/hero.jpg');
  background-size: cover;
  background-position: center 42%;
  padding: 80px 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.hero p {
  color: #e6edf4;
  font-size: clamp(17px, 2vw, 20px);
  max-width: 520px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: #ffffff;
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .2s;
  border: 2px solid var(--gold);
}

.btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 166, 166, .28);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .75);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  box-shadow: none;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

section p.lead {
  font-weight: 600;
  color: var(--navy);
}

/* tussenkop binnen een sectie */
h3.sub {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 34px 0 10px;
  line-height: 1.3;
}

h3.sub:first-of-type {
  margin-top: 4px;
}

h3.sub .dash {
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 11px;
}

/* Secties */
section {
  padding: 70px 0;
}

section.alt {
  background: var(--light);
}

h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 12px;
}

.rule {
  width: 74px;
  height: 4px;
  background: var(--rainbow);
  border-radius: 2px;
  margin-bottom: 24px;
}

section p.big {
  font-size: 18px;
  color: #37444f;
  margin-bottom: 16px;
  max-width: 780px;
}

.center {
  text-align: center;
}

.center .rule {
  margin-left: auto;
  margin-right: auto;
}

.center p.big {
  margin-left: auto;
  margin-right: auto;
}

/* Drie punten */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.item h3 {
  font-family: var(--sans);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--navy);
  margin-bottom: 8px;
}

.item p {
  font-size: 15.5px;
  color: var(--grey);
}

.item .bar {
  width: 30px;
  height: 3px;
  background: var(--rainbow);
  margin-bottom: 14px;
  border-radius: 2px;
}

/* Pride sectie */
.pride {
  background: var(--navy);
  color: #fff;
}

.pride h2 {
  color: #fff;
}

.pride p.big {
  color: #cfe4ec;
}

.pride h3.sub {
  color: #fff;
}

.pride h3.sub .dash {
  background: var(--gold);
}

.pride a {
  color: #7fe3e3;
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 227, 227, .45);
}

.pride a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Contact */
.contact-box {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 34px;
  justify-content: center;
}

.contact-box div {
  min-width: 190px;
}

.contact-box h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-box a, .contact-box p {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.5;
}

.contact-box a:hover {
  color: var(--gold);
}

/* Footer */
footer {
  background: var(--navy-deep);
  color: #9dbccb;
  padding: 40px 0 30px;
  font-size: 14px;
  text-align: center;
}

footer a {
  color: #9dbccb;
  text-decoration: none;
}

footer a:hover {
  color: var(--gold-light);
}

.legal {
  font-size: 11.5px;
  line-height: 1.7;
  color: #6f93a4;
  max-width: 820px;
  margin: 22px auto 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 18px;
}

/* Facebook-link */
.facebook-link {
  margin-top: 18px;
  font-size: 15px;
  text-align: center;
}

.facebook-link a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.facebook-link svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

a:focus-visible, .btn:focus-visible {
  outline: 3px solid #f8be17;
  outline-offset: 3px;
}

/* ===== Tablet ===== */
@media (max-width: 960px) {
  .wrap {
    padding: 0 22px;
  }

  .three {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .contact-box {
    gap: 32px;
  }
}

/* ===== Smartphone ===== */
@media (max-width: 760px) {
  body {
    font-size: 16.5px;
  }

  .wrap {
    padding: 0 20px;
  }

  .notice {
    font-size: 13px;
    padding: 10px 16px;
    line-height: 1.5;
  }

  header {
    padding: 18px 0;
  }

  svg.logo {
    height: 52px;
  }

  .hero {
    min-height: 0;
    padding: 56px 0 52px;
    background-position: 58% 38%;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 57, 79, .55) 0%, rgba(8, 57, 79, .35) 45%, rgba(8, 57, 79, .60) 100%);
  }

  .hero .wrap {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.22;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 16.5px;
    margin-bottom: 26px;
    max-width: 100%;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 13px;
  }

  section {
    padding: 46px 0;
  }

  h2 {
    font-size: 25px;
    line-height: 1.25;
  }

  h3.sub {
    font-size: 19px;
    margin: 28px 0 9px;
  }

  .rule {
    width: 62px;
    height: 3px;
    margin-bottom: 20px;
  }

  section p.big {
    font-size: 16.5px;
    line-height: 1.7;
  }

  .three {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 32px;
  }

  .item h3 {
    font-size: 14px;
  }

  .item p {
    font-size: 15.5px;
  }

  .contact-box {
    flex-direction: column;
    gap: 26px;
    margin-top: 28px;
  }

  .contact-box div {
    min-width: 0;
    width: 100%;
  }

  .contact-box a, .contact-box p {
    font-size: 17.5px;
  }

  .contact-box a {
    display: inline-block;
    padding: 4px 0;
  }

  footer {
    padding: 34px 0 26px;
    font-size: 13.5px;
  }

  .legal {
    font-size: 11px;
    line-height: 1.65;
    padding-top: 16px;
    margin-top: 18px;
  }

  html {
    -webkit-text-size-adjust: 100%;
  }
}

/* ===== Kleine telefoons ===== */
@media (max-width: 400px) {
  .wrap {
    padding: 0 17px;
  }

  svg.logo {
    height: 46px;
  }

  .hero {
    padding: 48px 0 44px;
  }

  .hero h1 {
    font-size: 26px;
  }

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

  h2 {
    font-size: 22.5px;
  }

  h3.sub {
    font-size: 18px;
  }

  .notice {
    font-size: 12.5px;
  }
}

/* Definitieve taalwisselaar */
header {
  position: relative;
}

.language-switcher {
  position: absolute;
  top: 18px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(11, 79, 108, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 3px 12px rgba(8, 57, 79, .06);
  z-index: 10;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--navy);
  transition: .2s;
}

.language-link.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}

a.language-link:hover {
  background: var(--light);
  color: var(--navy-deep);
}

a.language-link:focus-visible {
  outline: 3px solid #f8be17;
  outline-offset: 2px;
}

@media (min-width: 761px) and (max-width: 960px) {
  .language-switcher {
    top: 14px;
    right: 8px;
    left: auto;
    transform: none;
  }
}

@media (max-width: 760px) {
  header {
    padding-top: 60px;
  }

  .language-switcher {
    top: 8px;
    right: 4px;
    left: auto;
    transform: none;
    max-width: calc(100% - 8px);
  }

  .language-link {
    min-width: 32px;
    min-height: 32px;
    padding: 0 7px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .language-link {
    min-width: 30px;
    min-height: 30px;
    padding: 0 6px;
    font-size: 10.5px;
  }
}
