/* ==========================================================================
   Expeditie Stadsnatuur Leiden 2026
   Stylesheet — main-expeditie-stadsnatuur-leiden.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS-variabelen: kleurenpalet
   -------------------------------------------------------------------------- */
:root {
  --esn-groen-donker:      #1e5c28; /* donker bosgroen */
  --esn-groen:             #4ba849; /* helder natuurgroen */
  --esn-groen-licht:       #7ec85a; /* fris bladgroen accent */
  --esn-blauw:             #89c4b3;
  --esn-groen-achtergrond: #eaf5e4; /* luchtige lichtgroene achtergrond */
  --esn-geel:              #f0c030; /* zonnig geel */
  --esn-geel-hover:        #d4a820; /* geel hover-staat */
  --esn-wit:               #ffffff;
  --esn-tekst:             #1a3020; /* donkere tekst met groenige tint */
  --esn-tekst-licht:       #3d5e44; /* subtielere tekst */
  --esn-schaduw:           rgba(30, 92, 40, 0.12);
}

/* --------------------------------------------------------------------------
   Reset & box-model
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */
html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: bio-sans, sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--esn-tekst);
  background-color: var(--esn-wit);
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  border: none;
  display: block;
}

a {
  color: var(--esn-groen);
  text-decoration: underline;
}

a:hover {
  color: var(--esn-groen-donker);
  text-decoration: none;
}

/* Toegankelijkheid */
:focus {
  outline: 3px solid var(--esn-groen);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: 6.2rem;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 3rem;
}

h2 {
  font-size: 2.6rem;
  color: var(--esn-geel);
  margin-bottom: 1.2rem;
}

/* Sectie-h2's (alle secties behalve hero) */
.esn-zodoejemee h2,
.esn-expeditieleider h2,
.esn-events h2,
.esn-resultaten h2,
.esn-kaart h2,
.esn-meedoen h2,
.esn-foto h2,
.esn-partners h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--esn-blauw);
  margin-bottom: 3rem;
  /* overflow-wrap: break-word; */
}

#expeditie-nieuws,
#partners {
  text-align: center;
}

h3 {
  font-size: 2rem;
  color: var(--esn-groen-donker);
  margin-bottom: 0.8rem;
}

p {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  color: var(--esn-tekst);
}

p:last-child {
  margin-bottom: 0;
}

/* Kleurklassen voor H1-spans (zelfde aanpak als 2025) */
.esn-kleur-groen        { color: var(--esn-groen); }
.esn-kleur-groen-licht  { color: var(--esn-groen-licht); }
.esn-kleur-groen-donker { color: var(--esn-groen-donker); }
.esn-kleur-geel         { color: var(--esn-geel); }
.esn-kleur-blauw        { color: var(--esn-blauw); }
.groot                  { font-size: 112px; line-height: .6; }
.bold                   { font-weight: 700; }

/* --------------------------------------------------------------------------
   Paginaomhulling
   -------------------------------------------------------------------------- */

.esn-wrapper {
  max-width: 1024px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Knop
   -------------------------------------------------------------------------- */

.esn-ctas {
    list-style: none;
  }


.esn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: rgb(126 200 90 / 34%);
  color: var(--esn-wit);
  font-family: bio-sans, sans-serif;
  font-size: 2rem;
  text-decoration: none;
  padding: 1.2rem 3.2rem;
  border-radius: 20px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  border: none;
  margin: 8px 0;
  width: auto;
}

/* Pijl naar rechts — standaard voor losse buttons */
.esn-button::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* Uitzondering: buttons in .esn-ctas (foto-sectie) — 100% breed, pijl naar beneden */
.esn-ctas .esn-button {
  width: 100%;
}

.esn-ctas .esn-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
}

.esn-button:hover,
.esn-button:focus {
  background-color: var(--esn-groen-licht);
  color: var(--esn-wit);
  text-decoration: none;
}

.esn-button--primair {
  background-color: var(--esn-groen-donker);
  font-size: 2rem;
  padding: 1.4rem 4rem;
}

.esn-button--primair:hover,
.esn-button--primair:focus {
  background-color: var(--esn-groen);
}

/* --------------------------------------------------------------------------
   Hero-sectie
   -------------------------------------------------------------------------- */
.esn-hero {
    background-color: var(--esn-groen-donker);
    background-image: url(/images/blad.svg), url(/images/paddestoel.svg);
    background-repeat: no-repeat;
    background-position: -200px -300px, right 40px center;
    background-size: 54%, 20%;
    background-size: 40vw, 15vw;
    padding-bottom: 30rem;
}

.esn-hero .esn-wrapper {
  padding: 6rem 6rem 4rem;
  text-align: center;
}

.esn-hero__logo {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 8rem;
}

.esn-hero__logo img {
  width: 100%;
  margin: 0 auto;
}

.esn-hero__intro {
  font-size: clamp(2rem, 1.2rem + 1.5vw, 2.6rem);
  max-width: 740px;
  margin: 4rem auto;
  color: var(--esn-wit);
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.esn-hero__intro p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.esn-hero__doel {
    position: relative;
    font-size: clamp(2rem, 1.4rem + 1.8vw, 3rem);
    z-index: 1;
        color: var(--esn-blauw);
    line-height: 1.3;
}

.esn-hero__doel .esn-kleur-geel {
  font-weight: bold;
}

.esn-hero__cta {
  margin-top: 1.6rem;
}

.esn-hero__scroll {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 auto;
  color: var(--esn-wit);
  opacity: 0.6;
  text-decoration: none;
  animation: esn-scroll-bounce 2s ease-in-out infinite;
}

.esn-hero__scroll:hover {
  opacity: 1;
  color: var(--esn-wit);
}

@keyframes esn-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* H1 staggered fade-in */
.esn-hero__h1-woord {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: esn-h1-infade 0.6s ease forwards;
}

.esn-hero__h1-woord--1 { animation-delay: 0.1s; }
.esn-hero__h1-woord--2 { animation-delay: 0.35s; }
.esn-hero__h1-woord--3 { animation-delay: 0.55s; }
.esn-hero__h1-woord--4 { animation-delay: 0.75s; }

@keyframes esn-h1-infade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   SVG-overgang
   -------------------------------------------------------------------------- */
.esn-overgang {
  line-height: 0; /* verwijder witruimte onder inline img */
  font-size: 0;
  
}

.svg-overgang-1 {
    margin-top: -42rem;
    fill: var(--esn-groen);
}

.esn-overgang img,
.esn-overgang svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -2px; /* voorkomt sub-pixel spleetje bij schalen */
}

.svg-overgang-2 {
  position: relative;
  z-index: 1;
  margin-bottom: -2.5%;
  fill: var(--esn-blauw);
}

.svg-overgang-2 svg {
  transform: scaleY(-1);
  margin-bottom: 0;
  margin-top: -2px;
}

.svg-overgang-3 {
margin-top: -70px;
    fill: #eaf5e4;
}

.svg-overgang-7 {
      fill: #fff;
    margin-top: -2.5%;
}

.svg-overgang-4 {
    fill: #fff;
    margin-top: -2.5%;
}

.svg-overgang-events {
      fill: #fff;
    margin-top: -5%;
}

.svg-overgang-partners {
  fill: var(--esn-groen-achtergrond);
}

.svg-overgang-footer {
  fill: var(--esn-groen-donker);
    margin-top: -2.5%;
}

/* --------------------------------------------------------------------------
   Meedoen-sectie
   -------------------------------------------------------------------------- */
.esn-meedoen {
    background: var(--esn-groen);
    background: linear-gradient(180deg, rgba(58, 140, 66, 1) 0%, rgba(137, 196, 179, 1) 100%);
    padding: 8rem;
}

.esn-meedoen .esn-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;

}

.esn-meedoen__tekst {
  flex: 1 1 300px;
}

.esn-meedoen__tekst p {
  margin-bottom: 2rem;
  color: var(--esn-wit);
}

.esn-meedoen__tekst .esn-button {
  margin-top: 0.8rem;
}

.esn-meedoen__video {
  flex: 0 0 60%;
}

.esn-meedoen__video video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.15);
  display: block;
}

/* --------------------------------------------------------------------------
   Foto-sectie (volle breedte, achtergrondafbeelding)
   -------------------------------------------------------------------------- */
.esn-foto {
  min-height: 760px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax-effect op desktop */
  display: flex;
}

/* iOS Safari ondersteunt background-attachment: fixed niet correct —
   afbeelding verschijnt dan uitvergroot. Zet het uit op touch-apparaten. */
@media (hover: none) {
  .esn-foto {
    background-attachment: scroll;
  }
}

.esn-foto .esn-wrapper {
  position: relative;
  flex: 1;
}

.esn-foto__overlay {
  position: absolute;
  text-align: center;
  border-radius: 20px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 3.2rem 4rem;
  background: rgb(29 92 40 / 90%);
  max-width: 420px;
}

.esn-foto__overlay p {
    font-size: 2rem;
    color: var(--esn-wit);
    line-height: 1.5;
    margin: 2rem 0;
}

.esn-foto__quote-titel {
  font-size: 4.8rem;
  font-weight: 700;
  color: #8cc6b3;
  line-height: .9;
  margin-bottom: 1.2rem !important;
}

/* --------------------------------------------------------------------------
   Events/nieuws-sectie
   -------------------------------------------------------------------------- */

.esn-events {
  padding: 6rem 0;
}

.esn-events > h2 {
  margin-bottom: 3.2rem;
}

.esn-events__kaartjes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem 4rem;
    margin-top: 8rem;
}

/* Kaartje: foto links, tekst rechts */
.esn-kaartje {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
  align-items: flex-start;
  text-decoration: none;
  color: var(--esn-tekst);
}

.esn-kaartje:hover .esn-kaartje__inhoud h3 {
  color: var(--esn-groen);
}

.esn-kaartje__afbeelding {
  flex: 0 0 130px;
  height: 110px;
  overflow: hidden;
}

.esn-kaartje__afbeelding--leeg {
  background-color: var(--esn-groen-achtergrond);
}

.esn-kaartje__afbeelding img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.esn-kaartje__inhoud {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.esn-kaartje__inhoud h3 {
 line-height: 1.1;
    font-size: 3rem;
  color: var(--esn-groen-donker);
  transition: color 0.2s ease;
}

.esn-kaartje__inhoud p {
  font-size: 2rem;
  color: var(--esn-tekst-licht);
  margin: 0;
  line-height: 1.4;
}

.esn-kaartje__extern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--esn-groen);
  text-decoration: none;
}

.esn-kaartje__extern svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.esn-kaartje:hover .esn-kaartje__extern {
  color: var(--esn-groen-donker);
}

.esn-kaartje__inhoud .esn-button {
  align-self: flex-start;
  font-size: 1.5rem;
  padding: 0.8rem 2rem;
  margin-top: 0.8rem;
}

/* --------------------------------------------------------------------------
   Kaart-sectie (Leaflet)
   -------------------------------------------------------------------------- */
.esn-kaart {
  background-color: var(--esn-groen-achtergrond);
  text-align: center;
}

.esn-kaart__header {
  padding: 6rem 6rem 3rem;
}

/* Switch button */
.esn-switch {
  display: inline-flex;
  background-color: #d0e4c5;
  border-radius: 10rem;
  padding: 5px;
  gap: 4px;
  margin-top: 2.4rem;
}

.esn-switch__optie {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.4rem;
  border: none;
  border-radius: 10rem;
  background: transparent;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.esn-switch__optie svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.esn-switch__optie--actief {
  background-color: var(--esn-groen-donker);
  color: var(--esn-wit);
  box-shadow: 0 0 0 2px var(--esn-groen);
}

#esn-kaart-view {
  padding-bottom: 12rem;
}

/* Kaart & lijst weergave — brede wrapper (1400px) */
.esn-kaart__breedte {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

#esn-map {
  width: 100%;
  border-radius: 20px;
  height: 700px;
  position: relative;
  z-index: 0;
}


.esn-kaart__lijst {
  padding: 0 0 6rem;
}

/* Stad-slider */

.swiper-wrapper {
  padding-bottom: 2rem;
}   

.esn-stad-slider {
  padding: 4rem 0 0;
}

.esn-stad-slider:first-child {
  padding: 0;
}

.esn-stad-slider__titel {
  font-size: 3.2rem;
  color: var(--esn-groen-donker);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2rem;
  padding-left: 6rem;
}

.esn-slider-wrapper {
  position: relative;
}

.esn-slider-wrapper {
  overflow: visible;
  padding: 0 8rem;
}

.esn-slider-wrapper .swiper {
  overflow: hidden;
}

/* Kaartje in lijstweergave — zelfde als popup maar klikbaar als blok */
.esn-map-card--lijst {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--esn-tekst);
  height: 100%;
  transition: box-shadow 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--esn-schaduw);
}

.esn-map-card--lijst:hover {
  box-shadow: 0 4px 24px rgba(30, 92, 40, 0.2);
}

/* Navigatiepijlen */
.esn-slider-pijl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--esn-wit);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: var(--esn-tekst);
}

.esn-slider-pijl:hover {
  background: var(--esn-groen-donker);
  color: var(--esn-wit);
  border-color: var(--esn-groen-donker);
}

.esn-slider-pijl svg {
  width: 20px;
  height: 20px;
}

.esn-slider-pijl--prev { left: 0; }
.esn-slider-pijl--next { right: 0; }

.esn-kaart__lijst-placeholder {
  color: var(--esn-tekst-licht);
  font-style: italic;
  text-align: center;
  padding: 6rem 0;
}


/* Popup kaartje */
.leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
  margin: 0;
  width: 280px !important;
}

.esn-map-card {
  display: flex;
  flex-direction: column;
  font-family: bio-sans, sans-serif;
}

.esn-map-card__afbeelding {
  height: 140px;
  background-color: var(--esn-groen-achtergrond);
  background-size: cover;
  background-position: center;
  position: relative;
}

.esn-map-card__afbeelding--leeg {
  background-color: var(--esn-groen-achtergrond);
}

.esn-map-card__tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 12px 8px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  min-width: 62px;
}

.esn-map-card__tag-dag {
  font-size: 32px;
  font-weight: 700;
  color: var(--esn-groen-donker);
  line-height: 1;
}

.esn-map-card__tag-maand {
  font-size: 18px;
  font-weight: 400;
  color: var(--esn-tekst-licht);
  text-transform: lowercase;
}

.leaflet-popup-content {
    margin: 0;
    width: 280px !important;
}

.esn-map-card__inhoud {
  padding: 1.6rem  2.2rem 2.5rem;
  background: var(--esn-wit);
}

.esn-map-card__inhoud h3 {
  font-size: 24px;
  line-height: 1;
  color: var(--esn-tekst);
  margin-bottom: 0.2rem;
}

.esn-map-card__tijd {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--esn-groen);
  margin-bottom: 0.8rem;
}

.esn-map-card__inhoud p {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.3;
  margin: 1rem 0 1.3rem;
}

.esn-map-card__link {
  font-size: 1.6rem;
  color: var(--esn-groen);
  text-decoration: none;
}

.esn-map-card__link:hover {
  color: var(--esn-groen-donker);
  text-decoration: underline;
}

.leaflet-container a {
    color: var(--esn-groen-donker);
}

/* --------------------------------------------------------------------------
   SVG-overgangen 4 en 5
   -------------------------------------------------------------------------- */
.svg-overgang-4 svg {
  margin-bottom: -4px;
}

.svg-overgang-5 svg {
  fill: #1d5c28;
  margin-bottom: -4px;
}

/* --------------------------------------------------------------------------
   Expeditieleider-sectie
   -------------------------------------------------------------------------- */
.esn-expeditieleider {
  background-color: var(--esn-wit);
}

.esn-expeditieleider .esn-wrapper {
  padding: 6rem 0;
}

.esn-expeditieleider .esn-wrapper > h2 {
  margin-bottom: 4rem;
}

.esn-expeditieleider__inhoud {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.esn-expeditieleider__tekst {
  flex: 1 1 380px;
}


.esn-expeditieleider__voordelen,
.esn-expeditieleider__tekst ul {
  list-style: none;
  margin: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.esn-expeditieleider__voordelen li,
.esn-expeditieleider__tekst ul li {
  padding-left: 2.4rem;
  position: relative;
  font-size: 2rem;
  color: var(--esn-tekst);
  line-height: 1.5;
}

.esn-expeditieleider__voordelen li::before,
.esn-expeditieleider__tekst ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--esn-groen);
  font-weight: 700;
}

.esn-expeditieleider__visual {
  flex: 0 0 460px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.esn-expeditieleider__visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.15);
  display: block;
}

.esn-expeditieleider__placeholder-visual {
  width: 280px;
  height: 280px;
  background: var(--esn-groen-achtergrond);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--esn-tekst-licht);
  font-size: 1.4rem;
  font-style: italic;
}

.esn-expeditieleider__placeholder-visual svg {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Zo doe je mee — stappen
   -------------------------------------------------------------------------- */
.esn-zodoejemee {
  background-color: #ffffff;
  background-image: url(/images/libelle.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18vw;
}

.esn-zodoejemee .esn-wrapper {
  padding: 8rem 0;
}

.esn-zodoejemee .esn-wrapper > h2 {
  margin-bottom: 1.6rem;
      text-align: center;
}

.esn-zodoejemee__intro {
  font-size: 2rem;
  max-width: 640px;
  margin-bottom: 5rem;
  color: var(--esn-tekst-licht);
  text-align: center;
  margin-inline: auto;
}

.esn-stappen {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 4rem;
  margin-bottom: 5rem;
}

.esn-stap {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.esn-stap__nummer {
   flex-shrink: 0;
    width: 74px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--esn-geel);
    color: var(--esn-wit);
    font-size: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 8px;
        box-shadow: 0 2px 12px rgba(0, 17, 88, 0.08);
}

.esn-stap__inhoud h3 {
  font-size: 32px;
  color: var(--esn-groen-donker);
  margin-bottom: 0.8rem;
}

.esn-stap__inhoud p {
     font-size: 2rem;
  color: var(--esn-tekst-licht);
  margin: 0;
      line-height: 1.5;

}

.esn-zodoejemee__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}

.esn-zodoejemee__cta .esn-button {
  width: auto;
}

/* Outline-variant — transparant met donkergroene rand */
.esn-button--outline {
  background-color: transparent;
  color: var(--esn-groen-donker);
  border: 2px solid var(--esn-groen-donker);
}

.esn-button--outline::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e5c28' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
}

.esn-button--outline:hover,
.esn-button--outline:focus {
  background-color: var(--esn-groen-donker);
  color: var(--esn-wit);
}

.esn-button--outline:hover::after,
.esn-button--outline:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   SVG-overgang 6
   -------------------------------------------------------------------------- */
.svg-overgang-6 svg {
  fill: var(--esn-groen-donker);
  margin-bottom: -4px;
}

/* --------------------------------------------------------------------------
   Resultaten vorig jaar
   -------------------------------------------------------------------------- */
.esn-resultaten {
  background-color: var(--esn-groen-donker);
  background-image: url(/images/blad.svg);
  background-repeat: no-repeat;
  background-position: -170px 20px;
  background-size: 35vw;
}

.esn-resultaten h3 {
    color: var(--esn-groen-licht);
    font-size: 30px;
}

.esn-resultaten h4 {
  color: var(--esn-geel);
  font-size: 3.2rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

.esn-resultaten p {
  color: var(--esn-wit);
  font-size: 2rem;
  line-height: 1.4;
}

.esn-resultaten .esn-wrapper {
  padding: 8rem 0;
}

/* Koptekst */
.esn-resultaten__header {
  text-align: center;
  margin-bottom: 8rem;
}

.esn-resultaten__titel {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--esn-blauw);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.6rem;
}

.esn-resultaten__subtitel {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.esn-resultaten__subtitel a {
  color: var(--esn-blauw);
  font-weight: 600;
}

/* Twee kolommen */
.esn-resultaten__kolommen {
  display: flex;
  gap: 20rem;
  align-items: flex-start;
}

/* Linker kolom — winnaar */
.esn-resultaten__winnaar {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.4rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}


.esn-winnaar__label {
    color: var(--esn-wit);
    font-size: 2rem;
    line-height: 1.4;
    padding-bottom: 2rem;
    text-align: center;
}

.esn-winnaar__foto-wrapper {
  position: relative;
width: 280px;
    height: 280px;
}

.esn-winnaar__foto {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid var(--esn-geel);
}

.esn-winnaar__badge {
  position: absolute;
    top: 8px;
    left: 8px;
    width: 66px;
    height: 66px;
  border-radius: 50%;
background-color: var(--esn-geel);
    color: #ffffff;
    font-size: 40px;
        font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
    padding-bottom: 8px;
}

.esn-winnaar__feit {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

/* Rechter kolom — bijzondere soorten */
.esn-resultaten__bijzonder {
  flex: 1;
}

.esn-bijzonder__titel {
  font-size: 2rem;
  color: var(--esn-geel);
  margin-bottom: 0.8rem;
}

.esn-bijzonder__intro {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

/* Soorten-lijst */
.esn-soorten {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.esn-soort {
  display: block;
}

.esn-soort__link {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  border-radius: 10rem;
  transition: background-color 0.2s ease;
  padding: 0.4rem;
}

.esn-soort__link:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.esn-soort--foto-rechts {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.esn-soort__foto {
  flex-shrink: 0;
  width: 110px;
  min-width: 110px; /* voorkomt dat max-width: 100% de breedte inperkt op mobiel */
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
  object-position: center;
}

.esn-soort__label {
    color: var(--esn-groen-achtergrond);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.esn-soort__label strong {
  font-size: 1.7rem;
  line-height: 1.2;
}

.esn-soort__label em,
.esn-winnaar__label em {
  font-style: italic;
  opacity: 0.75;
}



/* Tijdelijke placeholder voor ontbrekende foto's */
.esn-foto-placeholder {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237ec85a' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
}

/* --------------------------------------------------------------------------
   Footer met partnerlogo's
   -------------------------------------------------------------------------- */
.esn-partners {
  background-color: var(--esn-groen-achtergrond);
  padding: 8rem 6rem 16rem;
}

.esn-partners__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 8%;
  justify-content: center;
  align-items: center;
}

.esn-partners__logos img,
.esn-partners__logos a {
  width: 14%;
  min-width: 80px;
  max-width: 150px;
  object-fit: contain;
}

.esn-partners__logos a {
  display: flex;
  align-items: center;
}

.esn-partners__logos a img {
  width: 100%;
  min-width: unset;
  max-width: unset;
}

.esn-partners__intro {
  font-size: 2rem;
  max-width: 640px;
  margin: 0 auto 8rem;
  color: var(--esn-tekst-licht);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Footer — organisator, PDF-link en contact
   -------------------------------------------------------------------------- */
.esn-footer {
  background-color: var(--esn-groen-donker);
  padding: 12rem 6rem;
  color: #fff;
}

.esn-footer__kolommen {
  display: flex;
  gap: 8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.esn-footer__kolom {
  flex: 0 0 180px;
  text-align: center;
}

.esn-footer__label {
    color: var(--esn-geel);
    font-size: 2.8rem;
    overflow-wrap: break-word;
    hyphens: auto;
    font-weight: 800;
}

.esn-footer__waarde {
      font-size: 1.8rem;
    line-height: 1.2;
    color: #fff;
    opacity: 0.75;
}

.esn-footer__waarde a {
  color: var(--esn-wit);
}

/* Item — soort-achtige rij met cirkel-icoon en label */
.esn-footer__item {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  border-radius: 10rem;
  padding: 0.4rem;
  transition: background-color 0.2s ease;
}

.esn-footer__item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.esn-footer__icoon {
    flex-shrink: 0;
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esn-groen-licht);
    background-color: rgba(255, 255, 255, 0.1);
}

.esn-footer__icoon svg {
    width: 38px;
    aspect-ratio: 1;
}

.esn-footer__item-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}


/* --------------------------------------------------------------------------
   Responsive — ≤ 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  h1 {
    font-size: 4.8rem;
  }

  .esn-hero {
    padding: 4rem 3rem 32rem;
  }

  .esn-hero .esn-wrapper {
    padding: 3rem 2rem 4rem;
  }

  .esn-meedoen {
    flex-direction: column;
    padding: 4rem 3rem;
    gap: 3.2rem;
  }

  .esn-meedoen__video {
    order: -1; /* video boven tekst op mobiel */
    flex: 0 0 100%;
  }

  .esn-events .esn-wrapper {
    padding: 4rem 3rem;
  }

  .esn-expeditieleider .esn-wrapper {
    padding: 4rem 3rem;
  }

  .esn-expeditieleider__inhoud {
    flex-direction: column;
  }

  .esn-expeditieleider__visual {
    order: -1;
    flex: 0 0 100%;
  }

  .esn-expeditieleider__placeholder-visual {
    width: 200px;
    height: 200px;
  }

  .esn-zodoejemee .esn-wrapper {
    padding: 4rem 3rem 8rem; /* 8rem onderaan i.v.m. svg-overgang-3 margin-top: -70px */
  }

  .esn-stappen {
    grid-template-columns: 1fr;
  }

  .esn-resultaten .esn-wrapper {
    padding: 4rem 3rem;
  }

  .esn-resultaten__titel {
    font-size: 2.8rem;
  }

  .esn-resultaten__kolommen {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .esn-resultaten__winnaar {
    flex: none;
    width: 100%;
    max-width: 360px;
  }

  .esn-partners {
    padding: 3rem;
  }

  .esn-partners__logos img,
  .esn-partners__logos a {
    width: 20%;
  }

  .esn-footer {
    padding: 3rem;
  }


  #esn-map {
    height: 460px;
  }


}

/* --------------------------------------------------------------------------
   Responsive — ≤ 600px
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .esn-events__kaartjes {
    grid-template-columns: 1fr;
  }

  .esn-kaartje__afbeelding {
    flex: 0 0 120px;
    height: 100px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — ≤ 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .esn-kaartje {
    flex-direction: column;
  }

  .esn-kaartje__afbeelding {
    flex: none;
    width: 100%;
    height: 160px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .esn-hero {
    padding: 3rem 2rem 36rem; /* grote bottom padding i.v.m. svg-overgang margin-top: -30rem */
  }

  .esn-meedoen {
    padding: 3rem 2rem;
  }

  .esn-foto__overlay {
    max-width: 100%;
    top: 0%;
    bottom: 0;
    transform: none;
  }

  .esn-events .esn-wrapper {
    padding: 3rem 2rem;
  }

  .esn-partners {
    padding: 2.4rem 2rem;
  }

  .esn-partners__logos img,
  .esn-partners__logos a {
    width: 28%;
  }

  .esn-footer {
    padding: 2rem;
  }

  .esn-footer__kolommen {
    gap: 2.4rem;
  }
}
