/* Algemene stijl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior:smooth;
  }
  
  
  body {
    font-family: 'Inter', Arial, sans-serif;
    color: #e5bc00;
    background: #0d0d0d;
    line-height: 1.6;
  }
  
  /* Navigatie */
  header {
    position: fixed;
    top: 0;
    width: 100%;

    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    font-weight: 500;
  }



  nav img {
    height: 5em;
    width: 10em;
  }
  .logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #e5bc00;
    font-weight: 1000;
    transition: opacity 0.3s ease;
  }
  
  .nav-links a:hover {
    opacity: 0.6;
  }
  
  /* Hero sectie */
  .hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 3rem;
    letter-spacing: 1px;
  }
  
  .hero p {
    margin-top: 0.5rem;
    color: #555;
  }
  
  .btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.6rem;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .btn:hover {
    background: #111;
    color: #fff;
  }
  
  /* About sectie */
  .about {
    padding: 6rem 2rem;
    max-width: 60%;
    margin: auto;
    text-align: center;
  }
  
  /* Work sectie */
  .work {
    text-align: center;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .card:hover img {
    transform: scale(1.02);
    opacity: 0.9;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Responsiviteit */
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 2.2rem;
    }
  
    .nav-links {
      gap: 1rem;
    }
  }
  

/* Container met video */
.video-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Zelf het iframe */
  .video-iframe {
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    border: none;
  }
  
  /* Houdt video goed gecentreerd bij smalle schermen */
  @media (max-aspect-ratio: 16/9) {
    .video-iframe {
      width: 100vw;
    }
  }
  
/* HAMBURGER ICON */
.menu-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #e5bc00;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* HIDDEN CHECKBOX */
#menu-toggle {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* Toon hamburger */
  .menu-icon {
    display: flex;
  }

  /* Verberg links standaard */
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    background: #111;
    width: min(320px, 90%);
    display: none;
    text-align: center;
    padding: 1rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    z-index: 10;
  }

  .nav-links li + li {
    margin-top: 0.5rem;
  }

  /* TOGGLE: toon menu als checkbox gechecked is */
  #menu-toggle:checked ~ .nav-links {
    display: flex;
    animation: dropdown 0.25s ease forwards;
  }

  /* Hamburger -> X animatie */
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  @keyframes dropdown {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
}



.about h2{
font-size: 3em;
  margin-bottom: 2em;
}
.about p{
  font-size: 1.5em;

}


.about {
margin: 10%;
  color: #e5bc00;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  max-width: 80%;
}

.content-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 75%;
  width: 100%;
}

/* Tekstgedeelte neemt 2/3 */
.content-about p {
  flex: 2;
  line-height: 1.7;
  color: #e5bc00;
  font-size: 1.7em;
}

/* Afbeeldinggedeelte neemt 1/3 */
.content-about img {
  flex: 1;
  max-width: 550px; /* houd de foto relatief klein */
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;

}

/* Responsief gedrag */
@media (max-width: 768px) {
  .content-about {
    flex-direction: column;
    text-align: center;
  }

  .content-about p {
    flex: unset;
    font-size: 1.5em;
  }

  .content-about img {
    max-width: 90%;
  }
}

.work {
  display: flex;
  justify-content: center; /* centreer alles horizontaal */
}

.work .grid {
  display: flex;
  flex-wrap: wrap; /* laat ze netjes breken op kleine schermen */
  justify-content: center; /* centreert de afbeeldingen */
  align-items: center;
  gap: 2rem; /* ruimte tussen kaarten */
  padding: 4rem 2rem;

}

.work .card img {
  width: 100%;
  max-width: 40em; /* beperk de breedte */
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work .card img:hover {
  transform: scale(1.05);
}

/* Responsief gedrag */
@media (max-width: 768px) {
  .work .grid {
    flex-direction: column; /* onder elkaar op mobiel */
  }
}

.work2 {

  padding: 4rem 2rem;
}

.work2 .flex {
  display: flex;
  flex-direction: column; /* onder elkaar */
  align-items: center;    /* horizontaal centreren */
  gap: 2rem;              /* ruimte tussen de afbeeldingen */
}

.work2 .card img {

  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work2 .card img:hover {
  transform: scale(1.03);
}