@font-face {
    font-family: Canela;
    src: url(fonts/Canela-Regular.woff2) format("woff2"), url(fonts/Canela-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url('fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

html {
	background-color: black;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px); /* min 16px, max 20px */
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.5;
}

/* Container: posts links, timetable rechts */
.content-3voor12 {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  width: 100%;
  margin: 60px auto 0;
  align-items: stretch; /* timetable rekt mee in hoogte */
}

/* Raster 2x2 */
.announcements {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 24px; /* horizontaal = verticaal */
}

/* Posts */
.post {
  width: 80%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Timetable */
.timetable {
  width: 100%;
  max-height: 100%;   /* niet groter dan posts-cluster */
  object-fit: contain; /* hele afbeelding blijft zichtbaar */
  border-radius: 6px;
  align-self: stretch;
  justify-self: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .content-3voor12 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .announcements {
    grid-template-columns: repeat(2, 1fr);
  }

  .timetable {
    max-width: min(420px, 90%);
    max-height: none;
    margin: 0 auto;
  }
}

/* Mobiel */
@media (max-width: 600px) {
  .announcements {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timetable {
    max-width: 100%;
  }
}



.article-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* zorgt dat items kunnen stapelen */
  margin-bottom: clamp(20px, 5vw, 100px);
}

.article {
  width: 50%;
  margin-bottom: clamp(20px, 5vw, 100px);
}

.article-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-image img {
  max-width: 80%;
  height: auto;
  display: block;
  border-radius: 20px;
      filter: drop-shadow(5px 5px 12px rgba(0, 0, 0, .45));
    -webkit-filter: drop-shadow(5px 5px 12px rgba(0, 0, 0, .45));
	margin-bottom: clamp(20px, 5vw, 100px);
}

/* Mobiel: stack onder elkaar */
@media (max-width: 768px) {
  .article, 
  .article-image {
    width: 100%; /* volle breedte */
  }
  .article-image {
    margin-top: 1.5rem; /* beetje ruimte tussen tekst en foto */
    order: 2; /* afbeelding onderaan */
  }
  .article {
    order: 1; /* tekst eerst */
  }
	
.article-image img {
    max-width: 100%;
	}
	.post {
		width: 100%;
	}
}


.text-right {
	text-align: right;
}

#section1, #overmij, #blog, .privacy-page, #contact, #page-404 { 
  background: radial-gradient(circle at center, 
    #569896 0%, 
    #569896 35%, 
    #EE8E81 65%, 
    #EE8E81 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 20s ease infinite;
}

#section2, #hsm-bg {
  background: radial-gradient(circle at center, 
    #0163C2 0%, 
    #0163C2 40%, 
    #75BEE9 70%, 
    #75BEE9 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 20s ease infinite;
}

#section3, #d66-bg {
  background: radial-gradient(circle at center, 
    #00AE41 0%, 
    #00AE41 40%, 
    #005800 70%, 
    #005800 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 20s ease infinite;
}

#section4, #kat-op-het-spek-bg {
  background: radial-gradient(circle at center, 
    #c63d2f 0%, 
    #c63d2f 40%, 
    #98070e 70%, 
    #98070e 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 20s ease infinite;
}

#section5, #project-3voor12-bg {
  background: radial-gradient(circle at center, 
    #87a7b4 0%, 
    #87a7b4 40%, 
    #2c4b56 70%, 
    #2c4b56 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 20s ease infinite;
}

#section6, #stukafest-bg {
  background: radial-gradient(circle at center, 
    #d42e36 0%, 
    #d42e36 40%, 
    #0f4a75 70%, 
    #0f4a75 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 20s ease infinite;
}

#section7, #atbookings-bg {
  background: radial-gradient(circle at center, 
    #6EDFAB 0%, 
    #6EDFAB 40%, 
    #2c4b56 70%, 
    #2c4b56 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 20s ease infinite;
}

/* Keyframes: beweegt naar de hoeken voor een dynamischer effect */
@keyframes gradientAnimation {
  0% {
    background-position: 20% 20%;
    background-size: 250% 250%;
  }
  25% {
    background-position: 80% 20%;
    background-size: 320% 320%;
  }
  50% {
    background-position: 80% 80%;
    background-size: 280% 280%;
  }
  75% {
    background-position: 20% 80%;
    background-size: 320% 320%;
  }
  100% {
    background-position: 20% 20%;
    background-size: 250% 250%;
  }
}


#project-3voor12-bg, #project-hsm-bg {
  position: relative;
}

.cursor,
.cursor-follower,
.cursor::before,
.menu-overlay,
.title-text,
.titles {
    pointer-events: none
}

.scribble-highlight {
  display: inline-block;
  position: relative;
  z-index: 0;
}

.scribble-circle {
  position: absolute;
  bottom: -0.1em;
  left: -10px;
  width: 120%;
  height: 1.5em;
  z-index: 0;
  pointer-events: none;
}

.scribble-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawScribble 1.4s ease forwards;
  animation-delay: 0.6s; /* voegt een vertraging van 0.3 seconden toe */
}


@keyframes drawScribble {
  to {
    stroke-dashoffset: 0;
  }
}

/* standaard uit */
.cursor,
.cursor-follower {
  display: none;
}

/* alleen tonen op devices met muis/trackpad en hover */
@media (any-hover: hover) and (any-pointer: fine) {
  .cursor,
  .cursor-follower { display: block; }
  body { cursor: none; } /* verberg native cursor alleen waar je eigen cursor actief is */
}


.logo,
.menu-column ul li a,
.menu-item-link,
a {
    text-decoration: none
}

.bottom,
.main-logo-grid,
.section,
.title-text,
.top {
    overflow: hidden
}


#mobile,
.mobile-image {
    display: none
}

#intro {
	 display: flex;
	flex-direction: row-reverse; /* Logo komt rechts, tekst links */
  justify-content: space-between;
  align-items: center;
	margin-top: 5%;
}

.button,
.button span,
.top {
    display: inline-block
}

.button,
a,
h1 {
    color: #fff
}

.button,
.carousel-card span,
.hello,
.subtitle,
h3 {
    font-family: Montserrat, sans-serif
}

.title-text {
    right: 0;
    text-transform: uppercase
}



.logo-container,
.rotating-outer-container {
    grid-column: 1/span 1;
    grid-row: 1/span 1
}

.cursor,
.cursor-follower {
    user-select: none
}

#fp-nav ul li {
    filter: brightness(0) saturate(100%) invert(100%) !important
}

#fp-nav.fp-right {
    display: none !important;
}

.button,
.button:hover {
    box-shadow: 0 10px 20px rgb(0 0 0 / .25)
}

.button:hover {
 transition: all .1s ease;
 box-shadow: none;
 background-color: #E9F4E3;
                    }

.button-container {
    margin-top: 20px;
	text-align: left;
}

.button span {
  display: inline-block;
  color: black;
}

.center>svg,
.rotating-outer-container>svg {
    position: relative;
    margin: auto;
    left: 0;
    bottom: 0
}

.bounce {
    -moz-animation: 3s infinite bounce;
    -webkit-animation: 3s infinite bounce;
    animation: 3s infinite bounce
}

@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-20px)
    }
    60% {
        transform: translateY(-10px)
    }
}

@-moz-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -moz-transform: translateY(0)
    }
    40% {
        -moz-transform: translateY(-20px)
    }
    60% {
        -moz-transform: translateY(-10px)
    }
}

@-webkit-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-20px)
    }
    60% {
        -webkit-transform: translateY(-10px)
    }
}

#img-container,
#introtext {
    width: 50%
}

body,
html {
    font-family: arial, helvetica;
    cursor: none;
	margin: 0;
}

.title-text,
h1 {
    font-family: Canela
}

.title-track {
  display: inline-flex;
  gap: 3vw;
  animation: scrollLoop 20s linear infinite;
  will-change: transform;
}

.project-text {
  white-space: nowrap;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
}

.title-track-non-animated {
  display: inline-flex;
  gap: 3vw;
}

/* Scrollanimatie */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.intro-block{
  width: 80%;          /* 80% van de pagina/container */
  text-align: left;
}

h2.intro-heading {
  font-family: Canela, serif !important;
  font-weight: 100;
  font-variation-settings: "wght" 100;
  font-size: clamp(32px, 5vw, 80px); /* max 80px ipv 100px */
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: clamp(20px, 5vw, 100px);
  color: #fff;
}

.intro-block .intro-copy {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 40px); /* max 40px ipv 50px */
  line-height: 1.35;
  margin: 0;
  color: #fff;
  margin-bottom: clamp(40px, 10vw, 200px);
}

.intro-copy span {
  opacity: 0;
  display: inline-block;
}

.intro-copy .intro-word {
  opacity: 0;
  display: inline-block;
  transform: translateY(1em);
}


/* registreer custom property zodat hij kan animeren */
@property --p {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

/* layout */
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(20px, 4vw, 50px);
  text-align: left;
  color: #fff;
}

.text-link {
	text-decoration: underline;
}

.centered-header {
	text-align: center !important;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr)); /* desktop 3 kolommen */
  gap: clamp(24px, 4vw, 56px) clamp(24px, 6vw, 72px);
  align-items: start; /* alle items starten bovenaan */
  padding: 0;
  list-style: none;
}

@media (max-width: 800px) {
  .skills-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr)); /* mobiel 2 kolommen */
  }
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* donut altijd bovenaan */
  text-align: center;
  height: 100%;
}

/* donut + emoji */
.skill-chart {
  --size: clamp(140px, 20vw, 240px);
  --bg: #E9F4E3;   /* ring */
  --fill: #81aa95; /* vulling */
  --p: 0;          /* start leeg, JS zet naar data-p */
  position: relative;
  width: var(--size);
  aspect-ratio: 1;
  flex-shrink: 0; /* cirkel blijft vast formaat */
  transition: --p 1200ms cubic-bezier(.2,.8,.2,1);
  margin-bottom: clamp(10px, 2vw, 16px);
}

.skill-ring {
  --p: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--fill) calc(var(--p) * 1%), var(--bg) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent 58%, #000 59%);
          mask: radial-gradient(farthest-side, transparent 58%, #000 59%);
  transition: --p 1.4s ease-out; /* smooth vullen */
}

.skill-emoji {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(var(--size) * 0.20);
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); /* subtiel */
  user-select: none;
  pointer-events: none;
}

.skill-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.6vw, 20px);
  color: #fff;
  text-align: center;
  line-height: 1.3;
}


/* respecteer reduced motion */
@media (prefers-reduced-motion: reduce){
  .skill-chart{ transition: none; }
}

/* kleuren en basis */
.cv-accordion {
  --line: #fff; /* lijnen wit */
  --text: #fff; /* tekst wit */
  --body: #fff; /* inhoud wit */
  width: min(1100px, 90vw);
  margin: clamp(20px, 5vw, 60px) auto;
  font-family: 'Montserrat', sans-serif;
}

/* item headings */
.cv-accordion .acc-trigger {
  all: unset; /* reset */
  display: block;
  width: 100%;
  cursor: pointer;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 0.02em;
  padding: clamp(12px, 3vw, 28px) 0;
  border-bottom: 2px solid var(--line);
  position: relative;
}

.cv-accordion .acc-item:first-child .acc-trigger {
  border-top: 2px solid var(--line);
}

/* klein indicator-streepje links dat subtiel beweegt bij open */
.cv-accordion .acc-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: var(--text);
  transform: translateY(-2px);
  transition: width 0.3s ease;
}
.cv-accordion .acc-trigger[aria-expanded="true"]::before {
  width: 120px;
}

/* paneel met smooth open/dicht */
.cv-accordion .acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  opacity: 0;
  padding-block: 0; /* geen padding dicht */
}

.cv-accordion .acc-panel.open {
  opacity: 1;
  padding-block: clamp(10px, 2.2vw, 20px);
}

/* inhoud */
.cv-accordion .acc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--body);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
}
.cv-accordion .acc-list li + li {
  margin-top: 0.4em;
}

/* focus zichtbaar voor toetsenbord */
.cv-accordion .acc-trigger:focus-visible {f
  outline: 2px dashed var(--line);
  outline-offset: 4px;
}

 .org-grid {
    width: min(1100px, 92vw);
    margin: 2rem auto;
  }

  .org-grid h2 {
    font: 600 1.6rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
  }

  .brand-grid {
    display: grid;
    gap: clamp(16px, 3vw, 32px);
    grid-template-columns: repeat(2, 1fr); /* mobiel: 2 kolommen, dus 3 rijen */
    align-items: center;
  }

  /* desktop en grotere tablets: 3 kolommen, dus 2 rijen */
  @media (min-width: 768px) {
    .brand-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .brand {
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: clamp(16px, 3vw, 28px);
    transition: transform 120ms ease, background-color 120ms ease, box-shadow 120ms ease;
    aspect-ratio: 4/3;
    text-decoration: none;
  }

  .brand:hover,
  .brand:focus-visible {
    transform: translateY(-2px);
    background: rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    outline: none;
  }

  .brand img {
    max-width: 80%;
    max-height: 80%;
    height: auto;
    object-fit: contain;
    filter: saturate(0) brightness(0.95); /* subtiele, rustige look */
  }

.brand[href*="stukafest.nl"] img {
  max-width: 65%;  /* kleiner maken */
  max-height: 65%;
}

  :root{
    --tst-text:#e9f4e3;
    --tst-muted:#d9e7de;
    --tst-bg: rgba(0,0,0,.08);
    --tst-radius: 999px;
    --tst-speed: 450ms;
  }

  .testimonials{
    width:min(960px, 92vw);
    margin: clamp(24px, 6vw, 56px) auto;
    text-align:center;
    color: var(--tst-text);
  }

  .tst-title{
    font: 600 clamp(22px, 4vw, 44px)/1.2 Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0 0 clamp(18px, 3vw, 28px);
    letter-spacing:.02em;
  }

  .tst-carousel{
    position: relative;
    isolation:isolate;
    outline: none;
  }

  .tst-slide{
    display:none;
    margin:0;
    padding: clamp(12px, 3vw, 18px) 0 0;
    animation: fadeIn var(--tst-speed) ease;
  }
  .tst-slide.is-active{ display:block; }

  .tst-avatar{
    width: clamp(96px, 14vw, 140px);
    height: clamp(96px, 14vw, 140px);
    border-radius: 50%;
    object-fit: cover;
    display:block;
    margin: 0 auto clamp(12px, 2vw, 18px);
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
  }

  .tst-meta{
    font: 500 clamp(12px, 1.8vw, 16px)/1.4 Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--tst-muted);
    margin-bottom: clamp(12px, 2vw, 16px);
  }
  .tst-name{ display:block; }
  .tst-role{ opacity:.9; }

  /* Quote in Canela */
  .tst-quote{
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.6;
    margin: 0 auto clamp(18px, 3vw, 26px);
    max-width: 56ch;
    background: var(--tst-bg);
    border-radius: 24px;
    padding: clamp(16px, 3vw, 28px) clamp(18px, 3.5vw, 32px);
  }

  .tst-dots{
    display:flex;
    gap:10px;
    justify-content:center;
    align-items:center;
    padding-top: 6px;
  }
  .tst-dot{
    width:12px; height:12px;
    border-radius:50%;
    background: rgba(233,244,227,.35);
    border:0;
    cursor:pointer;
    transition: transform .12s ease, background-color .12s ease;
  }
  .tst-dot.is-active{ background: var(--tst-text); transform: scale(1.08); }
  .tst-dot:focus-visible{ outline: 2px solid var(--tst-text); outline-offset: 2px; }

  @keyframes fadeIn{ from{opacity:0; transform: translateY(6px);} to{opacity:1; transform:none;} }

  /* Respecteer reduced motion */
  @media (prefers-reduced-motion: reduce){
    .tst-slide{ animation: none; }
  }

.skills-section, .cv-accordion, .org-grid {
	margin-bottom: clamp(40px, 10vw, 200px);
	}

.centered {
	text-align: center;
}

html.sr .load-hidden {
    visibility: hidden
}

.subtitle {
    font-weight: 500;
    color: #fff;
    margin-top: 5px;
	margin-bottom: 20px;
	font-size: clamp(17px, 2.26vw, 32px);
	text-align: left;
}

.hello {
    left: 0;
    right: 0;
	line-height: 1.5;
    width: 80%;
	color: #fff;
    font-weight: 400;
	font-size: clamp(14px, 1.125vw, 15px);
	text-align: left;
}

/* Wanneer de sectie 'active' wordt, komt de afbeelding naar boven en faded in */
.active .project {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.portfolio-item a img {
  width: 80vw;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative;
  left: 0;
  max-height: none;
}

.portfolio-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section {
    position: relative
}

.project,
.title-text {
    visibility: hidden;
    transition: transform 1s cubic-bezier(.5, 0, 0, 1), opacity 1s cubic-bezier(.5, 0, 0, 1);
    position: absolute;
    opacity: 0;
}

.project {
	top: 50% !important;
}

.title-text {
	top: 50%;
}


.active .project {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s
}

.project:hover {
    z-index: 3;
    filter: unset
}

.title-text {
    left: 0;
    margin: 0;
    font-size: 20vw;
    font-weight: 500;
    transform: translateY(calc(-50% + 60px));
    color: #fff0;
    -webkit-text-stroke: .2vw #fff;
    z-index: 0
}

.top{
  padding: 40px;                    /* gelijk aan logo-padding */
  display: flex;
  justify-content: space-between;
  align-items: center;              /* verticale uitlijning */
}


.active>.title-text {
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    transition-delay: 1s, 1s;
}

#title-text1 {
    font-size: 12vw !important;
    -webkit-text-stroke: 0.15vw white;
    margin-top: 1%;
}

#title-text2 {
    font-size: 30vw !important;
    margin-top: 2%;
}

#title-text3 {
 font-size: 17vw !important;
 margin-top: 2%;
}

#title-text4 {
    font-size: 21vw !important;
    margin-top: 2%;
}

#title-text5 {
    font-size: 16vw !important;
    margin-top: 1%;
}


#title-text6,
#title-text8 {
    font-size: 14vw !important;
}

#title-text7 {
    font-size: 17vw !important;
}

.rotating-outer-container>svg {
    animation: 40s linear infinite rotate;
    right: 0;
    width: 95%;
    height: 95%
}

.center>svg {
    right: 0;
    width: 75%;
    height: 75%;
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }
    25% {
        transform: rotate(90deg)
    }
    50% {
        transform: rotate(180deg)
    }
    75% {
        transform: rotate(270deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.main-logo-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
	text-align: center;
}

.cursor::before,
.titles {
    width: 100%;
    left: 0;
    position: absolute
}

.logo-container {
    margin-top: 8%;
    z-index: 1
}

.cursor {
    position: absolute;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    z-index: 2547483640 !important;
    transition: transform .5s cubic-bezier(.75, -1.27, .3, 2.33), opacity .2s cubic-bezier(.75, -1.27, .3, 2.33);
    transform: scale(.8)
}

.cursor::before {
    content: "";
    height: 100%;
    top: 0;
    background-image: url("customcursor.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    opacity: 0
}

.cursor.active {
    opacity: 1;
    transform: scale(5);
    z-index: 5
}

.cursor.active::before {
    opacity: 2
}

.cursor-follower {
    position: absolute;
    background: rgb(255 255 255 / .2);
    width: 50px;
    height: 50px;
    z-index: 2547483639 !important;
    transition: transform .6s cubic-bezier(.75, -1.27, .3, 2.33), opacity .4s cubic-bezier(.75, -1.27, .3, 2.33);
    transform: translate(4px, 4px)
}

.cursor-follower.active {
    opacity: .3;
    transform: scale(0)
}

.spinner {
    width: 40px;
    height: 40px;
    background-color: #fff;
    position: absolute;
    top: 48%;
    left: 48%;
    -webkit-animation: 1.2s ease-in-out infinite sk-rotateplane;
    animation: 1.2s ease-in-out infinite sk-rotateplane
}

.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 170, 149, 0.5), rgba(232, 247, 228, 1));
    z-index: 999999;
}

@keyframes sk-rotateplane {
    0% { 
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% { 
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% { 
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.scroll-progress {
  position: fixed;
  top: 0px; /* Pas dit aan naar de hoogte van je menu */
  left: 0;
  width: 100%;
  height: 5px; /* Dikte van de progress bar */
  background: rgba(0, 0, 0, 0.1); /* Achtergrond voor de container */
  z-index: 10050;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #F6C591; /* Kies hier je gewenste kleur */
  transition: width 0.25s ease-out;
}

html {
	background-color: black;
}


#project-3voor12-bg {
  position: relative;
}

.cursor,
.cursor-follower,
.cursor::before,
.menu-overlay,
.title-text,
.titles {
    pointer-events: none
}

.scribble-highlight {
  display: inline-block;
  position: relative;
  z-index: 0;
}

.scribble-circle {
  position: absolute;
  bottom: -0.1em;
  left: -10px;
  width: 120%;
  height: 1.5em;
  z-index: 0;
  pointer-events: none;
}

.scribble-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawScribble 1.4s ease forwards;
  animation-delay: 0.6s; /* voegt een vertraging van 0.3 seconden toe */
}


@keyframes drawScribble {
  to {
    stroke-dashoffset: 0;
  }
}

.cursor::before,
.desktop-image {
    display: block
}

.logo,
.menu-column ul li a,
.menu-item-link,
a {
    text-decoration: none
}

.bottom,
.main-logo-grid,
.section,
.title-text,
.top {
    overflow: hidden
}

.button,
.button span,
.top {
    display: inline-block
}

.button,
a,
h1 {
    color: #fff
}

.button,
.carousel-card span,
.hello,
.subtitle,
h3 {
    font-family: Montserrat, sans-serif
}

.title-text {
    right: 0;
    text-transform: uppercase;
	text-align: center;
}



.logo-container,
.rotating-outer-container {
    grid-column: 1/span 1;
    grid-row: 1/span 1
}

.cursor,
.cursor-follower {
    user-select: none
}
.section {
    justify-content: center;
    align-items: center;
	padding: 0 40px;
}

.section-space {
	padding: 0 80px;
}

#fp-nav ul li {
    filter: brightness(0) saturate(100%) invert(100%) !important
}

#fp-nav {
    z-index: 3
}

/* button blijft zoals je had, met inline-flex en gap/spacing */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* ruimte tussen tekst en pijl */
  outline: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  border-radius: 8px;
  padding: 12px 24px;
  border: 0;
  background: #F6C591;
  line-height: 1.5;
  font-size: clamp(14px, 1.125vw, 15px); /* gelijk aan .hello */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow .1s ease, background-color .1s ease;
}

.button:hover { box-shadow: none; background-color: #E9F4E3; }

/* wrapper schuift alleen horizontaal */
.arrow {
  display: inline-flex;
  align-items: center;       /* verticaal centreren met tekst */
  margin-left: 2px;          /* iets dichter bij tekst */
  transition: transform .3s cubic-bezier(.68,-0.55,.27,1.55);
}

.button:hover .arrow { transform: translateX(3px); } /* alleen rechts */

/* het puntje zelf, gedraaid vierkantje */
.arrow::before {
  content: "";
  display: inline-block;
  width: 0.45em;             /* schaalt met font-size */
  height: 0.45em;
  border-top: 0.1em solid currentColor;
  border-right: 0.1em solid currentColor;
  transform: rotate(45deg);  /* vaste hoek */
  transform-origin: center;
}

.center>svg,
.rotating-outer-container>svg {
    position: relative;
    margin: auto;
    left: 0;
    bottom: 0
}

.bounce {
    -moz-animation: 3s infinite bounce;
    -webkit-animation: 3s infinite bounce;
    animation: 3s infinite bounce
}

@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-20px)
    }
    60% {
        transform: translateY(-10px)
    }
}

@-moz-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -moz-transform: translateY(0)
    }
    40% {
        -moz-transform: translateY(-20px)
    }
    60% {
        -moz-transform: translateY(-10px)
    }
}

@-webkit-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-20px)
    }
    60% {
        -webkit-transform: translateY(-10px)
    }
}

#img-container,
#introtext {
    width: 50%
}

#introtext {
	padding: 50px 80px;
}

body,
html {
    font-family: arial, helvetica;
    cursor: none;
	margin: 0;
}

.title-text,
h1 {
    font-family: Canela
}


.project-text {
  white-space: nowrap;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
}

/* full-bleed wrapper */
.title-scroller {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 2vh 0;
  margin-bottom: clamp(20px, 5vw, 100px);
  margin-top: clamp(30px, 6vw, 120px); 
}

#non-project-scroller {
	margin-bottom: 0;
	margin-top: 0;
}

#title-scroller-about {
	margin-top: clamp(20px, 5vw, 100px);
}

#title-scroller-blog, #title-scroller-contact, #title-scroller-404 {
	margin-top: 0;
	margin-bottom: 0;
}
.animated-title {
  display: block;
  margin: 0 !important;
  font-family: Canela, serif;
  text-transform: uppercase;
  font-weight: 500;
  color: transparent;
  line-height: 1;
  white-space: nowrap;

  /* behoudt 11vw op desktop, maar groter minimum op mobiel */
  font-size: clamp(6rem, 11vw, 12rem);

  /* behoudt originele lijndikte */
  -webkit-text-stroke: 0.1vw #fff;
}


/* 3 kolommen: links | midden | rechts */
.title-track-non-animated {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 3vw;
  width: 100%;
  transform: translateX(var(--x-shift, 0));
}

/* tekstblokken consistent: niet afbreken of krimpen */
.project-text {
  white-space: nowrap;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
}

/* expliciet aangeven dat het middelste blok in het raster gecentreerd is */
.center-title {
  justify-self: center;
}

/* optioneel: subtiel kleinere opacity voor zijkanten voor focus */
.left, .right {
  opacity: 0.98;
}



/* Scrollanimatie */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


html.sr .load-hidden {
    visibility: hidden
}

h1 {
    font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.05;
    left: 0;
    right: 0;
    margin: 0 auto;
	text-align: left;
}

/* Nieuwe .project styling â€“ voor de animatie en drop-shadow, zonder horizontale offsets */
.project {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  margin: 0 auto; /* Dit centreert het blok horizontaal */
  transform: translateY(60px);  /* start 60px lager */
  opacity: 0;
  transition: transform 1s cubic-bezier(0.5, 0, 0, 1), opacity 1s cubic-bezier(0.5, 0, 0, 1);

  visibility: hidden;
}

/* Wanneer de sectie 'active' wordt, komt de afbeelding naar boven en faded in */
.active .project {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.portfolio-item a img {
  width: 80vw;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative;
  left: 0;
  max-height: none;
}

.portfolio-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* begin: smooth shadow reveal */
.project{
  /* jouw bestaande transform/opacity transitions laten staan */
  -webkit-filter: none;
  filter: none;
  transition:
    transform 1s cubic-bezier(.5,0,0,1),
    opacity   1s cubic-bezier(.5,0,0,1),
    filter    380ms cubic-bezier(.22,.61,.36,1); /* smooth in */
}

.project.shadow-ready{
  -webkit-filter: none;
  filter: none;
  transition: filter 220ms cubic-bezier(.22,.61,.36,1);
}

/* op hover geen fade van de filter: direct weg en direct terug */
.project:hover{
  -webkit-filter: none;
  filter: none;
  transition:
    transform 1s cubic-bezier(.5,0,0,1),
    opacity   1s cubic-bezier(.5,0,0,1),
    filter    0ms linear; /* geen animatie op hover */
}


h3 {
    left: 0
}

.section {
    position: relative
}

.project,
.title-text {
    visibility: hidden;
    transition: transform 1s cubic-bezier(.5, 0, 0, 1), opacity 1s cubic-bezier(.5, 0, 0, 1);
    position: absolute;
    opacity: 0;
}

.project {
	top: 50% !important;
}

.title-text {
	top: 50%;
	font-size: 4em;
    left: 0;
    right: 0;
    margin: 0 auto;
}


.active .project {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s
}

.project:hover {
    z-index: 3;
    filter: unset
}

.title-text {
    left: 0;
    margin: 0;
    font-size: 20vw;
    font-weight: 500;
    transform: translateY(calc(-50% + 60px));
    color: #fff0;
    -webkit-text-stroke: .2vw #fff;
    z-index: 0
}

.top {
    position: fixed;
    z-index: 4;
    padding: 40px
}

.active>.title-text {
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    transition-delay: 1s, 1s;
}

#title-text1 {
    font-size: 12vw !important;
    -webkit-text-stroke: 0.15vw white;
    margin-top: 1%;
}

#title-text2 {
    font-size: 30vw !important;
    margin-top: 2%;
}

#title-text3 {
 font-size: 17vw !important;
 margin-top: 2%;
}

#title-text4 {
    font-size: 21vw !important;
    margin-top: 2%;
}

#title-text5 {
    font-size: 16vw !important;
    margin-top: 1%;
}


#title-text6,
#title-text8 {
    font-size: 14vw !important;
}

#title-text7 {
    font-size: 17vw !important;
}

.rotating-outer-container>svg {
    animation: 40s linear infinite rotate;
    right: 0;
    width: 95%;
    height: 95%
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }
    25% {
        transform: rotate(90deg)
    }
    50% {
        transform: rotate(180deg)
    }
    75% {
        transform: rotate(270deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.cursor::before,
.titles {
    width: 100%;
    left: 0;
    position: absolute
}



/* ================================
   CURSOR ALTIJD BOVEN ALLES
================================ */
.cursor{
  position: absolute;
  background:#fff; width:20px; height:20px; border-radius:100%;
  z-index:10004;                        /* boven overlay */
  transition: transform .5s cubic-bezier(.75,-1.27,.3,2.33), opacity .2s cubic-bezier(.75,-1.27,.3,2.33);
  transform: scale(.8);
  pointer-events:none;
}
.cursor::before{
  content:""; height:100%; top:0;
  background-image:url("customcursor.svg");
  background-position:center; background-repeat:no-repeat; background-size:cover;
  border-radius:100%; opacity:0;
}
.cursor.active{ opacity:1; transform:scale(5); z-index:10004; }
.cursor.active::before{ opacity:2; }

.cursor-follower{
  position:absolute; background:rgba(255,255,255,.2);
  width:50px; height:50px; z-index:10003; pointer-events:none;
  transition:transform .6s cubic-bezier(.75,-1.27,.3,2.33), opacity .4s cubic-bezier(.75,-1.27,.3,2.33);
  transform:translate(4px,4px);
}
.cursor-follower.active{ opacity:.3; transform:scale(0); }

/* ================================
   SPINNER / PROGRESS
================================ */
.spinner{
  width:40px; height:40px; background-color:#fff;
  position:absolute; top:48%; left:48%;
  -webkit-animation:1.2s ease-in-out infinite sk-rotateplane;
  animation:1.2s ease-in-out infinite sk-rotateplane;
}
.spinner-wrapper{
  position:fixed; inset:0;
  background: linear-gradient(135deg, rgba(129,170,149,.5), rgba(232,247,228,1));
  z-index:999999;
}
@keyframes sk-rotateplane{
  0%{ transform:perspective(120px) rotateX(0) rotateY(0) }
  50%{ transform:perspective(120px) rotateX(-180.1deg) rotateY(0) }
  100%{ transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg) }
}

.scroll-progress{
  position:fixed; top:0; left:0; width:100%; height:5px; background:rgba(0,0,0,.1); z-index:3;
}
.progress-bar{ width:0%; height:100%; background:#F6C591; transition: width .25s ease-out; }

/* =========================================
   NAV — kleuren & layout-variabelen
   ========================================= */
:root {
  /* tekst */
  --nav-text:  #fafafa;
  --nav-hover: #ffffff;

  /* logo (default = sectie 1) */
  --logo-bg:   #EC8E82;
  --logo-ring: #E6F1E0;
  --logo-fg:   #E6F1E0;
  --logo-text: #E6F1E0;

  /* layout — desktop */
  --nav-max:      680px;
  --nav-gutter:   clamp(28px, 6vw, 72px);
  --nav-gap:      clamp(28px, 5vw, 64px);
  --link-gap:     clamp(12px, 1.4vw, 20px);
  --logo-size:    clamp(92px, 8.5vw, 120px);
  --logo-overlap: clamp(6%, 3vh, 14%);
}

/* volle-breedte container */
.site-nav {
  position: fixed;
  inset-block-start: clamp(12px, 2vh, 22px);
  inset-inline: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  pointer-events: none;
}

/* gecentreerde, smalle balk */
.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: var(--nav-gap);
  width: min(var(--nav-max), calc(100% - 2 * var(--nav-gutter)));
  margin-inline: auto;
  pointer-events: auto;
  transition: transform 0.35s ease;
}

/* zijden */
.nav-side {
  display: flex;
  align-items: center;
  gap: var(--link-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: space-between;
}

/* links */
.nav-side a {
  color: var(--nav-text);
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: .06em;
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 1.1;
  text-transform: uppercase;
  transition: color .25s ease;
}
.nav-side a:hover { color: var(--nav-hover); }

/* logo */
.nav-logo {
  position: relative;
  display: grid;
  place-items: center;
  inline-size: var(--logo-size);
  block-size: var(--logo-size);
  justify-self: center;
  transform: translateY(var(--logo-overlap));
  z-index: 101;
}

/* logo styling met subtiele diepte */
.mv-logo {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15))
          drop-shadow(0 4px 8px rgba(0,0,0,.08));
}

/* hide state */
.site-nav.hide .nav-bar {
  transform: translateY(-200%);
}

/* mobile menu unaffected */
.mobile-menu { transform: none !important; }

/* underline hover effect */
.site-nav .nav-side a {
  position: relative;
  text-decoration: none;
}

.site-nav .nav-side a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* ietsje onder de tekst */
  width: 100%;
  height: 2px;
  background-color: currentColor; /* zelfde kleur als tekst */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav .nav-side a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* logo overslaan */
.site-nav .nav-logo a,
.site-nav .nav-logo {
  position: static;
}

.site-nav .nav-logo::after {
  display: none !important;
}

/* uitschakelen op mobiel (bijv. < 768px) */
@media (max-width: 768px) {
  .site-nav .nav-side a::after {
    display: none;
  }
}


/* =========================================
   TABLET
   ========================================= */
@media (min-width: 769px) and (max-width: 1068px) {
  :root {
    --nav-max:      620px;
    --nav-gutter:   clamp(26px, 6vw, 64px);
    --nav-gap:      clamp(26px, 5.5vw, 56px);
    --link-gap:     clamp(10px, 1.8vw, 18px);
    --logo-size:    clamp(84px, 9vw, 108px);
    --logo-overlap: clamp(6%, 3vh, 12%);
  }

  .nav-bar {
    width: min(var(--nav-max), calc(100% - 2 * var(--nav-gutter)));
    column-gap: var(--nav-gap);
  }
}

/* =========================================
   MOBIEL
   ========================================= */
@media (max-width: 768px) {
  :root {
    --nav-max:      640px;
    --nav-gutter:   clamp(18px, 6vw, 28px);
    --nav-gap:      clamp(20px, 6vw, 40px);
    --link-gap:     clamp(10px, 4vw, 16px);
    --logo-size:    clamp(56px, 12vw, 72px);
    --logo-overlap: clamp(4%, 2vh, 8%);
  }

  .site-nav {
    inset-block-start: clamp(8px, 2vh, 16px);
    place-items: center;
  }

  .nav-bar {
    grid-template-columns: 1fr auto 1fr;
    column-gap: var(--nav-gap);
    width: min(var(--nav-max), calc(100% - 2 * var(--nav-gutter)));
  }

  .nav-side a {
    font-size: clamp(12px, 3.2vw, 16px);
    white-space: normal;
    line-height: 1.1;
    text-align: center;
  }

  .nav-right a[href*="over"] {
    display: block;
    text-align: center;
    text-wrap: balance;
  }

  /* géén schaduw onder logo */
  .mv-logo { filter: none; }

  .scribble { display: none; }
}

/* =========================================
   DEFAULT verborgen elementen voor mobiel
   ========================================= */
.hamburger { display: none; }
.mobile-menu { display: none; }

/* =========================================
   MOBIEL FULLSCREEN MENU
   ========================================= */
@media (max-width: 768px) {
  .nav-side { display: none !important; }

  .site-nav {
    inset-block-start: 0;
    pointer-events: none;
    z-index: 9999;
    padding: 20px;
  }

  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    pointer-events: auto;
    position: relative;
    z-index: 10000;
  }

  /* groot logo links */
  .nav-logo {
    inline-size: clamp(60px, 17vw, 100px) !important;
    block-size: auto !important;
    transform: none !important;
  }

  /* hamburger rechts */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 10001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--nav-text, #fafafa);
    transition: transform .3s ease, opacity .3s ease;
    position: relative;
  }

  /* active state */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
    left: 0;
  }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 9px;
    left: 0;
  }

  /* fullscreen overlay menu */
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .4s ease, opacity .3s ease;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: none;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  .mobile-menu a {
    font-family: "Montserrat", system-ui, sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 500;
    letter-spacing: .04em;
  }
  .mobile-menu a:hover { color: var(--nav-hover, #E6F1E0); }

  .mobile-menu.open {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============================
   Navigatiekleuren per paginatype
   ============================ */

/* Standaard: wit */
body.privacy-page .site-nav,
body.blog-article .site-nav {
  --nav-text: #fafafa;
  --nav-hover: #ffffff;
}

body.privacy-page .hamburger span,
body.blog-article .hamburger span {
  background: var(--nav-text);
}

/* Overlap → gebruik kleurvariabele */
body.privacy-page .site-nav.over-content {
  --nav-text: #ee8e81; /* privacy roze */
  --nav-hover: #ee8e81;
}

body.blog-article .site-nav.over-content {
  --nav-text: #ED8D81; /* blog oranje/roze */
  --nav-hover: #ED8D81;
}

body.privacy-page .site-nav.over-content .hamburger span,
body.blog-article .site-nav.over-content .hamburger span {
  background: var(--nav-text);
}



@media (max-width:600px) {
    #intro {
        flex-direction: column
    }
    .title-text,
    h1 {
        color: #fff
    }
    #desktop,
    #fp-nav,
    .desktop-image,
    .menu-item-img,
    .rotating-outer-container,
    #home-sub {
        display: none
    }
    .button-container,
    h1 {
        margin-bottom: 10px
    }
    .button-container,
    .hello {
        margin-bottom: 20px
    }
    h1 {
        font-size: 2em;
        margin-top: 0
    }
    .menu-open,
    .top {
        padding: 25px 25px 0
    }
    .logo,
    .menu-open {
        font-size: 15px
    }
    #intro {
        align-items: center
    }
    #introtext {
        width: 100%
    }
    .svg-arrow {
        width: 30px;
        height: 30px
    }
    #mobile {
        display: unset;
    }
    .menu-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 80%;
    }
    .menu-column {
        text-align: center;
        flex: 0
    }
    .menu-column h2 {
        font-size: 2em;
        margin-top: 5%
    }
    .button-container{
        margin-top: 20px
    }
    .menu-column ul li a {
        font-size: 1.5rem
    }
    .mobile-image {
        display: block
    }
}


.project-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  /* Hoogte van het zichtbare scherm, geen fixed positioning */
  height: 100dvh;
  height: var(--above-the-fold, 100dvh); /* fallback naar custom property indien via JS gezet */
  z-index: 1;
  pointer-events: none; /* optioneel, mag je weghalen als je interactie wilt */
}

.project-image {
  object-fit: cover;
  object-position: center;
  width: 100vw;
  height: 100dvh;
  height: var(--above-the-fold, 100dvh);
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100vw;
  max-height: 100dvh;
}

/* Fallback voor browsers die geen 100dvh ondersteunen */
@supports not (height: 100dvh) {
  .project-image-container,
  .project-image {
    height: 100vh;
    height: var(--above-the-fold, 100vh);
  }
}

/* Extra fix voor mobile/iOS safe-area */
@media (max-width: 768px) {
  .project-image-container,
  .project-image {
    height: 100dvh;
    height: var(--above-the-fold, 100dvh);
    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-top: env(safe-area-inset-top, 0);
  }
	.carousel__track img {
    width: calc(500% / 18)!important;
	}
}
  /* Projectpagina */

.scribble-highlight {
  display: inline-block;
  position: relative;
  z-index: 0;
}

.scribble-underline {
  position: absolute;
  bottom: -0.6em;
  left: -10px;
  width: 110%;
  height: 0.7em;
  z-index: 0;
  pointer-events: none;
}

.link > a:hover {
  color: white !important;
}
    
.link > a:before { 
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white !important;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.sub {
    font-size: 15px;
    display: block;
    margin-bottom: 2%;
    font-family: Montserrat;
    color: white;
}


.border {
    color: transparent;
    -webkit-text-stroke: 0.10vw white;
    font-family: Canela;
    font-size: 15vw;
}

.extra {
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.extra > img {
    width: 25px;
    height: 25px;
    left: 0;
    right: 0;
    margin: 10px auto;
    display: block;
}


#spotify {
    margin-top: 5%;
}

#reviews {
    background-color: #81aa95;
}


.quote {
    width: 50%;
    color: white;
    font-family: Canela;
    display: block;
    margin: 0 auto;
    font-size: 1.5em;
    line-height: 1.3em;
    margin-bottom: 5%;
}

.review-photo {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
}

.referentie {
    text-align: right;
    font-size: 0.8em;
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    margin-top: 5px;
    margin-bottom: 5%;
}

.referentie > span {
    color: white;
    font-family: Montserrat;
    text-transform: uppercase;
    font-size: 0.8em;
}


.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  background-image: url('../images/noise-light.png'); /* pad naar jouw PNG */
  background-repeat: repeat;
  opacity: 0.5; /* Speel hiermee voor zachtheid */
  pointer-events: none; /* Zorgt dat overlay geen clicks blokkeert */
  z-index: 1;
}

.poster {
    width: 50%;
    -webkit-filter: drop-shadow(5px 5px 5px #222 );
    filter: drop-shadow(5px 5px 5px #222);
    margin-bottom: 5%;
}

#pdf {
    width: 80%;
    height: 100%;
     display: block;
  margin-left: auto;
  margin-right: auto;
}

.gallery-container {
    margin-top: 5%;
}

.movie-container {
    position: relative;
    padding-top: 25px;
    padding-bottom: 67.5%;
    height: 0;
}
.movie-container iframe {
    box-sizing: border-box;
    background: url(../images/mathijs_verstegen_macbook_mockup.png) center center no-repeat;
    background-size: contain;
    padding: 11.9% 15.5% 14.8%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#movie-line {
    margin-bottom: -5%;
}



html.lb-disable-scrolling {
  overflow: hidden;
  position: static;
  height: 100vh;
  width: 100vw;
}

.gallery {
    margin: 10px 50px;
}

.gallery img {
    transition: 1s;
    padding: 15px;
}

.gallery img:hover {
    transform: scale(0.5);
}

.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
}

.animate__animated {
  opacity: 1 !important;
  visibility: visible !important;
}


/* carousel about page */

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100vh; /* dit is belangrijk */
}

.carousel__track {
  display: flex;
  width: calc(120% * 2.5);
  animation: scroll 40s linear infinite;
  pointer-events: none;
  height: 100%;
}

.carousel__track img {
  flex: 0 0 calc(100% / 7);
  width: calc(100% / 18);
  height: 100%;
  object-fit: contain;
  pointer-events: none;
    will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}


/* Endless scroll effect */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.carousel__track {
  will-change: transform;
}

/* PRELOADER */
#preloader{
  position: fixed;
  inset: 0;
  z-index: 2147483647; /* hoger dan alles */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Jouw gradient + animatie */
  background: radial-gradient(circle at center, #569896, #EE8E81);
  background-size: 300% 300%;
  animation: preloaderGradient 20s ease infinite;

  /* start zichtbaar */
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}

/* Spinner in jouw kleuren */
#preloader .loader{
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #81aa95;
  border-right-color: #E9F4E3;
  animation: preloaderSpin 1s linear infinite;
}

/* Verdwijnt netjes */
#preloader.is-hidden{
  opacity: 0;
  visibility: hidden;
}

@keyframes preloaderSpin {
  to { transform: rotate(1turn); }
}
@keyframes preloaderGradient {
  0% { background-position: 20% 20%; }
  50% { background-position: 80% 80%; }
  100% { background-position: 20% 20%; }
}


@media (max-width: 768px) {
	.carousel {
		height: unset;
		margin-top: 100px;
	}
	.menu-open {
		margin-top: 25px !important;
	}
	.article, .cv-accordion, .org-grid, .testimonials {
		width: 100%;
	}
	.article-right {
	float: unset;
}
.text-right {
	text-align: left;
}
	}
	
	@media (max-width: 1350px) {
		.hello {
			width: 100%;
		}
		#introtext {
			padding: unset;
		}
	}

/* 1) Z-index lagen */
:root{
  --z-barba: 100;      /* content en clones */
  --z-nav: 10010;      /* nav altijd erboven */
}

/* 2) Jouw bestaande nav, alleen z-index omhoog */
.site-nav{
  position: fixed;
  inset-block-start: clamp(12px, 2vh, 22px);
  inset-inline: 0;
  z-index: var(--z-nav);     /* was 100 */
  display: grid;
  place-items: center;
  pointer-events: none;      /* laat zoals je had */
}

/* 3) Logo boven alles binnen de nav houden */
.nav-logo{
  position: relative;
  display: grid;
  place-items: center;
  inline-size: var(--logo-size);
  block-size: var(--logo-size);
  justify-self: center;
  transform: translateY(var(--logo-overlap));
  z-index: calc(var(--z-nav) + 1);
}

/* 4) Barba containers en clones expliciet lager dan nav */
[data-barba="wrapper"]{ position: relative; z-index: 0; }

[data-barba="container"],
.barba-container,
.barba-clone,
[data-barba="container"].is-animating,
[data-barba="container"].is-leaving,
[data-barba="container"].is-next{
  position: relative;
  z-index: var(--z-barba) !important;
}

/* 5) Eventuele overlays of transition layers onder de nav */
.barba-overlay,
.transition-layer{ z-index: var(--z-barba) !important; }

/* 6) fullPage bullets onder de header houden */
#fp-nav{ z-index: 900; }

/* 7) Safety: voorkom rare stacking contexts boven je nav */
html, body{ transform: none !important; filter: none !important; }

/* geen schaduw standaard */
.project{
  filter: none;
  -webkit-filter: none;
}

/* schaduw alleen als JS 'shadow-ready' zet */
.project.shadow-ready{
  filter: drop-shadow(5px 5px 12px rgba(0,0,0,.45));
  -webkit-filter: drop-shadow(5px 5px 12px rgba(0,0,0,.45));
}

/* hover haalt schaduw meteen weg, en komt direct terug na hover */
.project.shadow-ready:hover{
  filter: none !important;
  -webkit-filter: none !important;
}

/* optioneel, als extra vangnet */
#fullpage[style*="visibility: hidden"] {
  opacity: 0;
}

/* BASIS: startstaat */
.section .project{
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: 1s, 1s;
  transition-timing-function: cubic-bezier(.5,0,0,1), cubic-bezier(.5,0,0,1);
  transition-delay: 0s, 0s;
}

/* ACTIEF: eindstaat — zet dit BLOK als LAATSTE in je CSS */
.section.active .project{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: .5s, .5s; /* jouw gewenste delay */
}

.barba-is-entering .project.shadow-ready { 
  filter: none !important; 
  -webkit-filter: none !important;
}

/* Safety net: toon drop-shadow alleen in de actieve sectie */
.section .project.shadow-ready{
  filter: none;
  -webkit-filter: none;
}
.section.active .project.shadow-ready{
  filter: drop-shadow(5px 5px 12px rgba(0,0,0,.45));
  -webkit-filter: drop-shadow(5px 5px 12px rgba(0,0,0,.45));
}
/* Extra guard tijdens Barba enter */
.barba-is-entering .project.shadow-ready{
  filter: none !important;
  -webkit-filter: none !important;
}

.job-meta{
  --ui: #FAFAFA;
  --gap: clamp(16px, 3vw, 40px);
  color: var(--ui);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin-bottom: clamp(40px, 10vw, 200px);
}

.job-meta__row{
  height: 2px;
  background: var(--ui);
  opacity: .95;
}

.job-meta__grid{
  display: grid;
  gap: var(--gap);
  padding-block: clamp(16px, 4vw, 40px);
  padding-inline: clamp(16px, 6vw, 64px);
  align-items: start;
  text-align: center;
}
@media (min-width: 900px){
  .job-meta__grid{ grid-template-columns: 1fr 1fr 1fr; }
}

.job-meta__col{
  display: grid;
  gap: clamp(8px, 1.4vw, 12px);
  justify-items: center;
}

.job-meta__label{
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.4vw, 14px);
  opacity: .9;
}

.job-meta__value{
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--ui);
}

.job-meta__link{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.job-meta__link:hover{ opacity: .9; }

.ext-icon{
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  background: url('../images/external-link.svg') no-repeat center / contain;
  filter: brightness(0) invert(1);
}

/* Skills blokjes */
.job-meta__skills{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;                     /* naast elkaar */
  flex-wrap: wrap;                   /* naar nieuwe regel als nodig */
  gap: 10px;                         /* ruimte tussen blokjes */
  justify-content: center;           /* netjes centreren */
}

.job-meta__skills li{
  background: #FAFAFA;
  color: #0f172a;
  border-radius: 999px;              /* maakt het mooi rond */
  padding: 6px 14px;                 /* compacter */
  font-size: clamp(12px, 1.2vw, 14px);  /* kleiner */
  font-weight: 300;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
  white-space: nowrap;               /* voorkomt afbreken */
}

ul.custom-list {
  list-style: none; /* standaard bullets weg */
  padding-left: 0;
  margin-left: 0;
}

ul.custom-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5em; /* ruimte voor de custom bullet */
  margin-bottom: 0.5em;
}

ul.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;                        /* midden van de regel */
  transform: translateY(-50%);     /* netjes centreren */
  width: 0.6em;
  height: 0.6em;
  border: 2px solid #fff;          /* witte rand */
  border-radius: 50%;              /* cirkelvorm */
  background-color: transparent;   /* transparant midden */
}

/* Blog titel boven in de card */
.blog-title {
  font-size: clamp(18px, 2.5vw, 32px);
  margin: clamp(30px, 6vh, 50px) auto 20px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

/* Blog button */
#button_blog {
  background-color: #87A7B4;
  color: #fff;
}
#button_blog span { color: #fff; }
#button_blog:hover {
  background-color: #6b8794;
  box-shadow: none;
}

/* Blog card basis */
.blog-card {
  position: relative;
  max-width: 45%;
  width: 100%;
  height: clamp(300px, 60vh, 500px);
  margin-bottom: 10%;
  overflow: hidden;
  border-radius: 20px;
  text-align: center;

  /* Typography */
  font-family: 'Montserrat', sans-serif;
  color: #fff;

  /* Background */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  /* Shadow standaard AAN */
  filter: drop-shadow(5px 5px 12px rgba(0, 0, 0, 0.45));
  -webkit-filter: drop-shadow(5px 5px 12px rgba(0, 0, 0, 0.45));
  transition: filter 0.3s ease;
}

#music-lab  { background-image: url(3voor12_cultuurlab.jpg); }
#left-alive { background-image: url(leftalive.jpg); }
#popronde   { background-image: url(popronde.jpg); }
#marvindee  { background-image: url(marvindee.jpg); }
#faw        { background-image: url(faw.jpg); }

/* Links en overlays */
.blog-card a { color: #fff; text-decoration: none; transition: 0.2s; }
.blog-card .color-overlay {
  background: rgba(64, 84, 94, 0.5);
  width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
  z-index: 10;
  transition: background 0.3s;
}

/* Titel */
.title-content {
  text-align: center;
  margin-top: 120px;
  padding: 0 20px;
  z-index: 20;
  transition: margin 0.6s;
}
.blog-card h3 {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: 1px;
  font-family: Canela, serif;
  margin: 0;
  display: inline-block;
}
.blog-card h3 a {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.blog-card h3 a:hover {
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.95);
}
.blog-card h3:after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  margin: 20px auto;
  background: white;
  transition: width 0.2s;
}

/* Intro */
.blog-intro {
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.4;
  font-style: italic;
  margin: 0 auto;
  padding: 0 15px;
}

/* Card-info en button */
.card-info {
  box-sizing: border-box;
  width: 100%;
  padding: 18px 20px;
  z-index: 20;
  opacity: 0;
  bottom: -40px;
  margin: 20px auto 0;
  transition: bottom 0.64s, opacity 0.63s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-info p {
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.5;
  margin: 0;
}
.blog-button-wrap {
  margin-top: auto;
  text-align: center;
}

/* Hover alleen voor desktops */
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
    filter: none; /* shadow weg bij hover */
    -webkit-filter: none;
  }
  .blog-card:hover .card-info { opacity: 1; bottom: 70px; }
  .blog-card:hover .color-overlay { background: rgba(64,64,70,0.8); }
  .blog-card:hover .title-content { margin-top: 60px; }
  .blog-card:hover h3:after { width: 60%; }
}

/* Container */
.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;x
  gap: 2rem;
}

/* Responsive tweaks */
@media (max-width: 1068px) { .blog-card { max-width: 80%; } }
@media (max-width: 868px)  { .blog-card { max-width: 100%; } }
@media (max-width: 768px) {
  .card-info { display: none; }
  .blog-button-wrap {
    display: block;
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 30;
  }
  .blog-card { height: 300px; }
  .title-content { margin-top: 40px; }
  .blog-card h3 { font-size: 1.2em; }
}

.projects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;   /* ipv center, zodat children volle breedte pakken */
  text-align: left;
  margin: 0 auto;
}

.project-list {
  list-style: none;
  margin: 0;
  margin-bottom: clamp(20px, 5vw, 100px);
  padding: 0;
}

.project-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
}

.project-item img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  opacity: 0;
  position: absolute;
  left: 0;
  transition: opacity 0.4s ease;
}

.project-item span {
  display: block;
  width: 100%;        
  text-align: left;           /* expliciet links */
  font-family: "Canela", serif;
  font-size: clamp(18px, 6vw, 72px);
  letter-spacing: 1.5px;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px #FAFAFA;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Hover effect */
.project-item:hover img {
  opacity: 1;
}

.project-item:hover span {
  color: #FAFAFA;
  -webkit-text-stroke: 0.4px #FAFAFA;
  transform: translateX(70px); /* tekst schuift naar rechts, zelfde breedte als img */
}

body.is-animating {
  overflow: hidden;
  pointer-events: none;
}

.line {
  display: block;
  font: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
.line span {
  display: inline;

  color: inherit;
}

/* Footer positie/horizontale marge */
footer {
  position: fixed;
  bottom: 26px;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
  pointer-events: none; /* footer zelf niet klikbaar */
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center; /* centreren */
  gap: 12px;
  color: #fafafa;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  pointer-events: auto; /* inhoud wel klikbaar */
}


/* Social rij + spacing */
.social-icons{ display: flex; gap: 16px; }

/* Link is slechts de “houder”; grootte komt van het icoon */
.flip-link{
  display: inline-grid;
  place-items: center;
  perspective: 800px;          /* diepte zoals in je referentie */
  text-decoration: none;
  color: inherit;
}

/* Wrap stapelt de twee faces exact op elkaar */
.flip-wrap{
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  overflow: hidden;            /* onderkant masken */
}

/* De twee gezichten */
.face{
  grid-area: 1 / 1;            /* stack */
  display: grid;
  place-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* Start: front in beeld, back net buiten beeld (onder) */
.face--front{ transform: translate3d(0, 0%,   0); }
.face--back { transform: translate3d(0, 120%, 0); }

/* Hover: front schuift omhoog, back schuift in */
.flip-link:hover .face--front{ transform: translate3d(0, -120%, 0); }
.flip-link:hover .face--back { transform: translate3d(0,   0%,  0); }

/* Icon zelf: behoud exacte grootte (22px), geen resizes */
.social-icons i{
  font-size: 22px !important;
  line-height: 1;
  display: block;              /* geen inline baseline-gap */
}

/* Divider + copyright op één lijn */
.divider{ margin: 0 8px; opacity: .6; }
.link-copyright{ font-size: 12px; color: #fff; }

.svg-arrow {
    filter: brightness(0) saturate(100%) invert(100%)
}

.downArrow {
    bottom: 12px;
	position: fixed;
    right: 0;
    padding-right: 12px
}

@media (max-width: 768px) {
  footer {
    bottom: 80px; /* zet de footer iets hoger op mobile */
  }

  .downArrow {
    bottom: 0;          /* blijft er netjes onder */
    margin-bottom: 12px; /* optioneel voor wat extra ruimte */
  }
	.section-space {
		  padding: 0 40px;
	}
	.intro-block {
    width: 100%;
	}
}
/* ---------------------------------
   Hero: stabiel op mobiel & desktop
--------------------------------- */
.project-hero {
  position: relative;
  height: 100vh;                          /* basis fallback */
  height: calc(var(--vh, 1vh) * 100);     /* JS-fallback voor oude iOS */
  overflow: hidden;                       /* indicator mag geen layout beïnvloeden */
}

/* Moderne, stabiele unit: groeit niet mee met UI */
@supports (height: 100svh) {
  .project-hero {
    height: 100svh;
  }
}

/* Image-container vult de hero */
.project-image-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.project-image {
  width: 100vw;               /* altijd schermbreed */
  height: auto;               /* geen stretching */
  min-height: 100%;           /* bedek de container verticaal */
  max-height: none;
  object-fit: cover;          /* cover garandeert vullen */
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}


/* Titel en indicator boven de image */
.project-hero-title {
  position: relative;
  z-index: 2;
}

.scroll-indicator {
  position: absolute;
  bottom: 0;                   /* blijft onderin de hero */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;               /* masker: alleen bovenste helft zichtbaar */
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.scroll-indicator img {
  width: 300px;
  height: 300px;
  display: block;
  animation: rotateCircle 12s linear infinite;
  transform-origin: center;
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#mobile {
	text-align: left !important;
}

.case {
	width: 100%;
    margin-bottom: clamp(20px, 5vw, 100px);
	border-radius: 20px;
	filter: drop-shadow(5px 5px 16px rgba(0, 0, 0, .25));
-webkit-filter: drop-shadow(5px 5px 16px rgba(0, 0, 0, .25));

}
}
/* ================================
   BLOG PAGINA
   ================================ */

/* Basislayout */
body.blog-overview {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #EE8E81 0%, #569896 100%);
  font-family: "Montserrat", sans-serif;
}

/* Header */
.blog-header, .contact-header, .error-header {
  text-align: center;
  padding: 180px 20px 50px;
}

.blog-title {
  font-family: "Canela", serif;
  font-size: clamp(48px, 6vw, 96px);
  text-transform: uppercase;
  font-weight: 400;
  -webkit-text-stroke: 1px #FAFAFA;
  color: transparent;
  margin: 0 0 50px;
}

/* Filter buttons */
.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.category-filter button {
  background: none;
  border: 1px solid #FAFAFA;
  color: #FAFAFA;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-filter button.active,
.category-filter button:hover {
  background: #FAFAFA;
  color: #0D0D0D;
}

/* Grid */
.blog-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  padding: 0 clamp(20px, 5vw, 80px) 40px;
  justify-items: center; /* center cards in hun grid-cel */
}

/* Blog tiles */
.blog-tile {
  width: 100%;
  
  aspect-ratio: 441 / 685;   /* behoud verhouding */
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #f6f6f6;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Meta: pills + datum */
.tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.blog-tile .pill {
  background: #FAFAFA;
  color: #0f172a;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
}

.blog-tile .date {
  display: block;
  font-size: 14px;
  margin-bottom: 16px;
  color: #fff;
}

/* Titels */
.blog-tile h2 {
  font-family: "Canela", serif;
  font-size: 36px; /* iets kleiner zodat het mooi past */
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Full image variant */
.blog-tile.full img.tile-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.blog-tile.full .tile-overlay {
  position: absolute;
  inset: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Image variant */
.blog-tile.image .tile-content {
  padding: 28px 24px 0 24px;
  flex: 1 0 auto;
}

.blog-tile.image .tile-image {
  width: 100%;
  height: 45%; /* schaalt mee met aspect ratio */
  overflow: hidden;
}

.blog-tile.image .tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Basic variant */
.blog-tile.basic .tile-content {
  padding: 28px 24px;
}

/* Geen posts */
.no-posts {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 280px);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 40px 0;
}

.pagination .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(250,250,250,0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination .dot.active,
.pagination .dot:hover {
  background: #FAFAFA;
}

.comments-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #FAFAFA;
  margin-top: 8px;
  margin-left: auto;   /* duwt het component naar rechts */
}

.comments-count img,
.comments-count svg {
  width: 16px;
  height: 16px;
  display: inline-block;
}



/* Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
	padding: 0px 40px 40px 40px;
  }
}

/* ================================
   BLOG ARTIKEL PAGINA
   ================================ */

/* Basis */
body.blog-article {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #0D0D0D;
  background: linear-gradient(180deg, #EE8E81 0%, #569896 100%);

  /* ruimte boven en onder = nav offset + logo + extra */
  padding-top: calc(clamp(12px, 2vh, 22px) + var(--logo-size) + 40px);
  padding-bottom: calc(clamp(12px, 2vh, 22px) + var(--logo-size) + 40px);

  /* horizontale ademruimte */
  padding-inline: 20px;
}

/* Wrapper */
.article-wrapper {
  max-width: 1200px;
  margin: auto; /* centreert verticaal met padding van body */
  background: #FAFAFA;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header */
.article-header {
  background: var(--theme-color, #86A6F0);
  color: #FAFAFA;
  padding: 40px 30px;
  text-align: center;
}


.article-header .article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: clamp(10px, 3vw, 50px) 0 20px;
}

.article-header .pill {
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-header .date {
  font-size: 13px;
  opacity: 0.9;
  align-self: center;
}

.article-header .article-title {
  font-family: "Canela", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin: 0 auto clamp(10px, 3vw, 50px);
  line-height: 1.2;
  text-align: center;
  width: 80%;
}

/* Hero image */
.article-header .article-hero {
  display: block;
  width: 100%;
  margin-top: 30px;
  border-radius: 12px;
  object-fit: cover;
}

/* Content */
.article-content {
  padding: 50px 30px;
  font-size: 18px;
  line-height: 1.7;
}

.article-content h2 {
  margin: 40px 0 16px;
  font-size: 28px;
  font-weight: 600;
}

.article-content p {
  margin-bottom: 24px;
  font-size: 16px;
  color: #0D0D0D;
}

.article-subtitle {
  font-weight: 300;
  color: #fff;
  width: 80%;
  margin: 0 auto;
  margin-top: 5px;
  font-size: clamp(17px, 2.26vw, 32px);
  margin-bottom: clamp(20px, 5vw, 100px);
}

/* Responsive */
@media (max-width: 768px) {
  body.blog-article {
    /* alleen verticale ademruimte, geen extra horizontaal */
    padding: 80px 0;
  }

  .article-wrapper {
    margin: 0 20px;   /* 20px ruimte tot viewport */
    padding: 0 20px;  /* 20px ruimte binnen wrapper */
	margin-top: 60px;
  }

  /* Header vult nu de hele wrapper */
  .article-header {
    margin: 0 -20px;       /* trekt naar links en rechts uit */
    padding: 30px 20px;    /* inhoud netjes uitgelijnd */
    border-radius: 0;      /* geen rare afgeronde hoeken */
  }

  .article-header .article-title {
    font-size: 32px;
    width: 100%;
  }

  .article-content {
    padding: 30px 0; /* horizontaal geregeld via wrapper */
  }
}


.summary-box {
  background: rgba(255, 255, 255, 0.6); /* transparant wit */
  border: 2px solid #EE8E81;
  border-radius: 12px;
  padding: 40px 30px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  font-family: "Canela", serif;
  font-size: 20px;
  line-height: 1.6;
  color: #0D0D0D;
  position: relative;
}

.summary-logo {
  width: 40px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.blog-image {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ---------------------------
   Reacties
--------------------------- */
.comments, .related-articles {
  margin-top: 60px;
  padding: 30px;
  background: #fafafa;
  border-radius: 12px;
  color: #222 !important; /* net geen zwart */
}

.comments h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #222;
}

.comment {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comment img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment strong {
  font-weight: 600;
  display: block;
  color: #111;
}

.comment time {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 6px;
}

.comment p {
  margin: 0;
  line-height: 1.5;
  color: #222;
}

.comments p {
	color: #222;
}

/* ---------------------------
   Reactieformulier
--------------------------- */
.comment-form {
  margin-top: 50px;
  padding: 30px;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0,0,0,0.05);
  background: var(--theme-color, #86A6F0);
  color: #fff;
}

.comment-form h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #FAFAFA;
}

.comment-form form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* meer ruimte tussen de velden */
}

.comment-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FAFAFA;
  gap: 6px; /* ruimte tussen labeltekst en input */
}

.comment-form input,
.comment-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  background: #fff;
  transition: border .2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--nav-hover, #569896);
  outline: none;
}

.comment-form textarea {
  min-height: 120px;
}

.comment-form button {
  align-self: flex-start;
  background: #569896;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .25s ease;
}

.comment-form button:hover {
  background: #457b7a;
}


/* ---------------------------
   Meldingen
--------------------------- */
.success {
  color: green;
  margin-bottom: 15px;
}

.error {
  color: red;
  margin-bottom: 15px;
}

/* =========================
   Gerelateerde artikelen
========================= */
.related-articles {
  margin-top: 60px;
}

.related-articles .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* altijd 3 naast elkaar */
  gap: 20px;
  width: 100%;
}

.related-articles .blog-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa; /* lichte achtergrond */
  min-height: 220px;
  transition: transform 0.2s ease;
}

.related-articles .blog-tile:hover {
  transform: translateY(-4px);
}

.related-articles .blog-tile img {
  object-fit: cover;
  width: 100%;
  height: 140px; /* vaste hoogte */
}

.related-articles .tile-content,
.related-articles .tile-overlay {
  padding: 12px;
  font-size: 0.9rem;
}

.article-subheading {
  font-family: "Montserrat", serif; /* sluit aan bij je stijl */
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #0D0D0D;
  border-left: 4px solid #EE8E81; /* subtiel lijntje voor visuele hiërarchie */
  padding-left: 12px;
  line-height: 1.4;
}

.image-card {
  display: flex;
  align-items: flex-start;              /* tekst bovenaan gelijk met afbeelding */
  gap: 18px;                            /* ruimte tussen afbeelding en tekst */
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  color: #fff;
  position: relative;                   /* voorkomt overlappen met source-box */
  z-index: 0;
}

.image-card__image {
  flex: 0 0 45%;                        /* afbeelding ~45% */
}

.image-card__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.image-card__text {
  flex: 1;
}

.image-card__text h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.image-card__text p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #fff;                          /* consistent met titel */
}

/* Klikbare statements voor bronnen */
.statement {
  cursor: pointer;
  color: #569896;
  border-bottom: 1px dotted #569896;
  transition: all 0.2s ease;
}

.statement:hover {
  background-color: rgba(86, 152, 150, 0.08);
}

/* Source box styling */
.source-box {
  margin-top: 12px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  background: #f9f9f9;
  border-left: 4px solid var(--theme-color, #86A6F0);
  color: #333;
  display: none;
  border-radius: 6px;
  position: relative;
  z-index: 1;                           /* altijd boven de cards */
}

.blog-link {
	color: #569896;
}

/* Mobiel */
@media (max-width: 768px) {
  .image-card {
    flex-direction: column;
    text-align: left;                   /* tekst links voor leesbaarheid */
  }

  .image-card__image {
    flex: none;
    width: 100%;
    margin-bottom: 12px;
  }
}



@media (max-width: 768px) {
  .related-articles .related-grid {
    grid-template-columns: 1fr; /* onder elkaar */
  }

  .related-articles .blog-tile {
    max-height: 250px; /* nog korter */
  }

  .related-articles .blog-tile img {
    height: 80px; /* kleinere afbeelding */
  }

  .related-articles .tile-content,
  .related-articles .tile-overlay {
    padding: 8px; /* minder ruimte rondom tekst */
    font-size: 0.8rem; /* compacter font */
  }
	.comments, .related-articles {
		padding: 0px;
	}
	.comment-form {
		margin-bottom: 20px;
		border-radius: 12px;
	}
}

/* ============================
   Privacy pagina custom styles
   ============================ */

body.privacy-page {
  font-family: "Montserrat", Arial, sans-serif;
  color: #000; /* alle tekst zwart */
  line-height: 1.6;
  margin: 0;
      padding-top: calc(clamp(12px, 2vh, 22px) + var(--logo-size) + 40px);
    padding-bottom: calc(clamp(12px, 2vh, 22px) + var(--logo-size) + 40px);
}

/* Header */
.privacy-header {
  color: #000; /* tekst zwart */
  text-align: center; /* centreren */
  padding: 60px 20px;
}

.privacy-header h1 {
  font-family: "Canela", serif;
    font-size: clamp(48px, 6vw, 96px);
    text-transform: uppercase;
    font-weight: 400;
    -webkit-text-stroke: 1px #FAFAFA;
    color: transparent;
    margin: 0 0 50px;
	text-align: center;
}

.privacy-header p {
  margin: 0;
  font-size: 1rem;
  color: #FAFAFA; 
  text-align: center;
}

/* Content blok */
.privacy-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  color: #000; /* tekst zwart */
 
}

.privacy-content h2 {
  font-size: 1.4rem;
  color: #000; /* zwart */
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  margin: 10px 0;
  color: #000; /* zwart */
}

.privacy-content ul {
  padding-left: 20px;
  margin: 10px 0 20px;
}

/* Links */
.privacy-content a {
  color: #569896;
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* ============================
   Privacy pagina uitbreidingen
   ============================ */

/* Cursor standaard wit */
.cursor {
  background: #fff;
}
.cursor-follower {
  border-color: #fff;
}

/* Titel breken op mobiel */
.privacy-header h1 {
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 600px) {
  .privacy-header h1 {
    font-size: clamp(32px, 8vw, 48px);
  }
  .privacy-header h1::after {
    content: "";
    display: block;
  }
  .privacy-content {
	  margin: 0 20px;
    padding: 30px 20px;
	}
}

.osano-cm-widget__outline {
    fill: transparent !important;
    stroke: #FAFAFA !important;
}

.osano-cm-widget__dot {
    fill: #FAFAFA !important;
}

/* ===========================
   Blockquote (quote component)
   =========================== */
.article-content blockquote {
  font-family: "Canela", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: #0d0d0d;
  margin: 40px 0;
  padding: 20px 30px;
  position: relative;
  background: none;
  border-left: 6px solid var(--theme-color, #86A6F0);
}

.article-content blockquote::before {
  content: "“";
  font-size: 4rem;
  line-height: 0.5;
  position: absolute;
  left: 10px;
  top: -10px;
  color: var(--theme-color, #86A6F0);
  font-family: "Canela", serif;
}

.article-content blockquote cite {
  display: block;
  margin-top: 20px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  color: #555;
}

/* ===========================
   A/B-test tabel styling
   =========================== */
.ab-test-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ab-test-table thead {
  background: var(--theme-color, #86A6F0);
  color: #fff;
}

.ab-test-table thead th {
  padding: 12px 10px;
  text-align: left;
  font-weight: 600;
}

.ab-test-table tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.ab-test-table tbody tr:last-child td {
  border-bottom: none;
}

.ab-test-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* Responsive tabel */
@media (max-width: 768px) {
  .ab-test-table thead {
    display: none;
  }

  .ab-test-table, 
  .ab-test-table tbody, 
  .ab-test-table tr, 
  .ab-test-table td {
    display: block;
    width: 100%;
  }

  .ab-test-table tr {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }

  .ab-test-table td {
    padding: 10px;
    border-bottom: none;
    position: relative;
  }

  .ab-test-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #555;
  }
}

/* Contactpagina layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Formulier + FAQ naast elkaar */
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper {
  width: 100%;
  max-width: 600px;
}

/* Formulier */

.contact-form-wrapper p {
  margin-bottom: 2rem;
  color: var(--text-muted, #FAFAFA);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #FAFAFA;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: clamp(0.95rem, 2vw, 1rem);
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

/* Knop */
.btn {
  display: inline-block;
  width: auto;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button.btn:hover {
  background-color: #333;
}

/* Afbeelding */
.contact-image img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* FAQ styling */
.faq-section {
  margin-top: clamp(20px, 5vw, 100px);
  margin-bottom: clamp(20px, 5vw, 100px);
}

.faq-section h2 {
  font-family: "Canela", serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #FAFAFA;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  color: #FAFAFA;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  position: relative;
  color: #FAFAFA;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 0.8rem;
  color: #FAFAFA;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 1rem;
  }

  .contact-image {
    margin-top: 2rem;
    text-align: center;
  }
}

/* 404 pagina */
#error-text {
	text-align: center !important;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 200px); /* past zich aan aan header/footer */
  padding: 2rem 1rem;
}

/* Volledige breedte op mobiele schermen */
@media (max-width: 768px) {
  .error-gif {
    width: 100%;
  }
	.error-content {
		padding: 0;
	}
}

.error-text {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.error-gif {
  display: block;
  max-width: min(400px, 90vw); /* schaalt mee met viewport */
  height: auto;
  margin: 2rem auto; /* horizontaal centreren + responsieve ruimte */
  border-radius: 8px;
  object-fit: contain;
}

.error-btn {
  margin-top: 1.5rem;
  display: inline-block;
}

#contact-section {
	margin-bottom: calc(clamp(12px, 2vh, 22px) + var(--logo-size) + 40px);
}

#non-blog-related-articles {
	background-color: transparent;
	margin-bottom: calc(clamp(12px, 2vh, 22px) + var(--logo-size) + 40px);
}

#non-blog-related-title {
    color: #FAFAFA;
}

/* Standaard verborgen */
#img-container .mobile-banner {
  display: none;
}

/* Alleen zichtbaar op mobiel */
@media (max-width: 600px) {
  #img-container .main-logo-grid {
    display: none;
  }

  #img-container .mobile-banner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem; /* optioneel, voor een zachtere look */
  }
	
	#img-container {
		width: 100% !important;
	}

  /* Extra ruimte tussen banner en titel */
  #introtext {
    margin-top: 1.5rem; /* pas gerust aan naar 2rem of 3rem */
  }
	#intro {
		margin-top: 0;
	}
	.footer-content {
		display: none;
	}
	.osano-cm-widget {
		left: 20px;
	    bottom: 20px;
	}
}

