:root {
  /* kleuren uit jouw palette */
  --c-strong: #f21651;
  --c-main: #f26389;
  --c-bg: hsl(4, 65%, 96.5%);
  --c-panel: #f2a0a0;
  --c-inner: #f2c2c2;

  /* fonts (Adobe) */
  --font-title: "salted", cursive;
  --font-body: "paceambu", sans-serif;

  /* layout */
  --maxw: 980px;
  --radius: 18px;
  --radius2: 16px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--c-bg);
  font-family: var(--font-body);
  font-weight: 300; /* extra light */
  color: #1b1b1b;
  background-color: var(--c-bg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== HEADER / NAV (zoals in je ontwerp: geen blur, gewoon clean) ===== */
.header {
  padding: 18px 26px;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--c-bg);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.nav__brand-logo {
  height: 30px;
  width: auto;
}

.nav__mascot {
  height: 50px;
  width: auto;
  justify-self: center;
}

.nav__links {
  justify-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav__links a {
  color: var(--c-strong);
  font-family: var(--font-body);
  font-weight: 700; /* bold */
  font-size: 16px;
}

.nav__links a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* hamburger hidden desktop */
.nav__toggle {
  display: none;
  justify-self: end;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
}

.burger {
  width: 22px;
  height: 2px;
  background: var(--c-strong);
  display: block;
  position: relative;
  border-radius: 99px;
}
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--c-strong);
  border-radius: 99px;
}
.burger::before {
  top: -7px;
}
.burger::after {
  top: 7px;
}

/* ===== PAGES ===== */
.page {
  /* min-height: calc(100vh - 76px); */
  padding: 0 16px 26px;
  /* display:grid;
    place-items:center; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.panel {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 900px;
}
/* roze grote kaart */
.panel__inner {
  background: var(--c-panel);
  border-radius: var(--radius);
  padding: 18px;
}

/* layout zoals voorbeeld: tekst links, foto/map rechts */
.panel__inner--split {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: row;
  gap: 18px;
}

.panel__inner--about {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.panel__title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
}

.panel__text {
  padding: 10px 10px 12px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.6;
  font-size: 14px;
  width: 60%;
}
.panel__text p {
  margin: 0 0 12px;
}
.panel__text p:last-child {
  margin-bottom: 0;
}

/* rechter “inner” block */
.panel__media {
  background: var(--c-inner);
  border-radius: var(--radius2);
  padding: 10px;
  display: grid;
  place-items: center;
}

/* foto’s */
.media__img {
  max-width: 25rem;
  height: auto;
  display: block;

  object-fit: fill;
  border-radius: 12px;
}

.panel__media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
/* map */
.media__map {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 12px;
}

/* dotted lists zoals je voorbeeld (met “……”) */
.lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 6px;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
}

.list li span:first-child {
  white-space: nowrap;
  font-weight: 400;
}

.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.list li span:last-child {
  white-space: nowrap;
  font-weight: 700;
}

/* contact line */
.contactline {
  margin: 0 0 12px;
}
.contactline span {
  font-weight: 700;
}
.contactline a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.contactline a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* footer exact simpel gecentreerd */
.footer {
  display: flex;
  justify-content: center;
  max-width: var(--maxw);
  margin: 18px auto;
  text-align: center;
  font-size: 12px;
  color: rgba(242, 22, 81, 0.85);
  font-weight: 400;
  position: fixed;
  bottom: 0;
}

/* ===== HOME (fullscreen video) ===== */
.is-home .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.home {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__overlay {
  position: absolute;
  inset: 0;
}

.home__center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 16px;
}

/* geen min(), zodat je editor niet klaagt */
.home__logo {
  width: 82vw;
  max-width: 420px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .panel__inner--split,
  .panel__inner--about {
    flex-direction: column;
    align-items: center;
  }

  .pannel__text, .panel__text {
    width: 100%;
  }

  .pannel__title--center {
    text-align: center;
  }

  .lists {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
  .media__img {
    max-height: 320px;
    object-fit: cover;
  }

  .media__map {
    margin-right: 200px;
    margin-left: auto;
  }

  .nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }

  .nav__toggle {
    display: none;
  }

  .is-home .nav {
    display: flex;
    justify-content: end;
  }

  .home__video {
    height: auto;
    margin-top: 10rem;
  }

  .page {
    margin-top: 3rem;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
  }

  .nav__links {
    display: none;
    position: absolute;
    right: 16px;
    left: 16px;
    top: 62px;
    background: rgba(242, 229, 228, 0.98);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .nav__links.is-open {
    display: flex;
  }
  .footer {
    position: relative;
    padding-bottom: 15px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 14px 16px;
  }

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

  .lists {
    gap: 2rem;
  }
  .media__map {
    margin-right: 100px;
    margin-left: auto;
  }

  /* hamburger aan */

  .nav {
    position: relative;
    display: grid;
    align-items: center;
  }

  .nav__toggle {
    display: none;
  }

  .is-home .nav {
    display: flex;
    justify-content: end;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
  }

  .nav__links {
    display: none;
    position: absolute;
    right: 16px;
    left: 16px;
    top: 62px;
    background: rgba(242, 229, 228, 0.98);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .nav__links.is-open {
    display: flex;
  }

  .panel__title {
    font-size: 26px;
  }
}