:root {
  --darkest-green: #032221;
  --dark-green: #0b453a;
  --mid-mint: #aacbc4;
  --bright-mint: #2fa98c;
  --light-mint: #cde1dd;
  --lightest-mint: #f1f7f6;
  --purple: #804ee6;
}

html {
    scroll-behavior: smooth;
}

b {
    font-weight: bold;
}

img {
    width: 100%;
}

a {
    color: inherit;
}

a:hover {
    color: var(--purple);
}

a:hover svg {
    fill: var(--purple);
}

button {
    color: white;
    font-family: 'Sora';
    font-size: 17px;
    font-weight: bold;
    border: none;
}

button:hover {
    cursor: pointer;
}

.special-button {
    border-radius: 28px;
    padding: 9px 40px;
    background: var(--bright-mint);
}

.special-button:hover {
    background-color: var(--purple);
    cursor: pointer;
}

body {
    font-family: sora;
    font-size: min(17px, 4vw);
    letter-spacing: 0em;
    line-height: 1.7em;
    font-weight: 300;
    color: white;
    margin: 0px;
}

p {
    margin: 0px;
}

.fill-white {
    fill: white;
}

h1 {
    font-weight: bold;
    font-size: min(55px, 9vw);
    line-height: 1em;
    letter-spacing: 0.02rem;
    margin: 0px;
}

h2 {
    font-weight: bold;
    font-size: min(34px, 6vw);
    letter-spacing: 0em;
    margin: 0px 0px 45px;
}

h3 {
    font-size: 17px;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 75px;
    align-items: center;
    padding: 80px clamp(28px, calc(24.2% - 83px), 400px);
    text-align: center;
}

.production-section {
    padding: 80px clamp(28px, 28px, 400px);
    flex: 1 1 400px; 
    color: var(--dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.production-header {
    padding: min(80px, 8vw);
    text-align: center;
}

.footer {
    background: var(--light-mint);
    color: var(--dark-green);
    position: relative;
}

.footer-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px clamp(28px, calc(24.2% - 83px), 400px);
    font-size: 15px;
}

.socials-icon {
    fill: var(--bright-mint);
    height: 100%;
    width: auto;
}

.socials-icon:hover {
    fill: var(--purple);
}

.mail-phone-icons {
    fill: var(--dark-green);
    width: 18px;
    position: relative;
    bottom: -2px;
    margin-right: 5px;
}

.copyright {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

.youtube {
    width: -webkit-fill-available;
    max-width: 560px;
    aspect-ratio: 16 / 9;
}

.foto {
    border: 5px solid white;
    box-shadow: 0.00px 1.00px 4px 0px rgba(0, 0, 0, 0.4);
}

.productie-foto {
    max-width: calc(100% - 10px);
    margin: 0px 0px 28px;
}

.over-ons-sectie {
    max-width: 650px;
    display: flex;
    gap: 75px;
    flex-direction: column;
}

.navigation-desktop {
    position: fixed;
    right: 0px;
    display: flex;
    align-items: end;
    flex-direction: column;
    margin: 40px;
    gap: 6.5px;
}

@media (max-width: 1000px) {
    .navigation-desktop {
        visibility: hidden;
    }

    .over-ons-sectie {
        text-align: left;
    }

    .steun-ons-section {
        text-align: left;
    }

    .production-header {
        text-align: left;
    }
}

.navigation-desktop-item {
    display: flex;
    align-items: center;
    background: none;
    font-weight: 300;
    padding: 0px;
    font-size: 16px;
    line-height: 1.4em;
    text-decoration: none;
    transition: 0.2s ease;
}

.navigation-desktop-item:hover {
    color: var(--purple);
}

.navigation-desktop-item:hover .navigation-dot {
    background-color: var(--purple);
    border-color: var(--purple);
}

.navigation-active {
    color: var(--bright-mint);
}

.navigation-active .navigation-dot {
    background-color: var(--bright-mint);
    border-color: var(--bright-mint);
}

.navigation-dot {
    width: 7px;
    height: 7px;
    border: 3px solid white;
    border-radius: 50%;
    margin-left: 16px;
}








.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--darkest-green);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 20px 28px;
  visibility: hidden;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.nav-logo {
  width: 36px;
}

.nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(50vw, 320px);
    background: var(--light-mint);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 1.6rem;
}

.nav-links a {
    color: var(--darkest-green);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    text-decoration: none;
    padding: 0.2rem 0;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--lightest-mint);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { 
    transform: translateY(9px) rotate(45deg); 
    background-color: var(--darkest-green);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { 
    transform: translateY(-9px) rotate(-45deg); 
    background-color: var(--darkest-green);
}

@media (max-width: 1000px) {
    .nav-links.open { transform: translateX(0); }
    .site-nav { visibility: visible; }
}








.carousel{
    position: relative;
    width: 100%;
    height: max(38vw, 240px);
    background-color: var(--darkest-green);
  }
 
  .carousel-viewport{
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
 
  .carousel-track{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 16px;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
 
  .carousel-track img{
    height: 100%;
    width: auto;
    flex: 0 0 auto;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
  }
 
  .carousel-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.15s ease;
    z-index: 2;
  }
 
  .carousel-arrow:hover {
    color: var(--purple);
  }
 
  .carousel-arrow:active{
    transform: translateY(-50%) scale(0.96);
  }
 
  .carousel-arrow--prev{ left: 16px; }
  .carousel-arrow--next{ right: 16px; }
 
  .carousel-arrow.is-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
 
  @media (prefers-reduced-motion: reduce){
    .carousel-track{
      transition: none;
    }
  }