* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #fff;
    color: #222;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #fdfbf8;
  }
  
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }
  
  .logo {
    height: 40px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links-zwart {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links-zwart a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #b18c65; /* Lichtbruin accent */
  }

  .nav-links-zwart a:hover {
    color: #b18c65; /* Lichtbruin accent */
  }
  
  .hero-content {
    position: absolute;
    top: 40%;
    left: 10%;
    z-index: 5;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: #b18c65;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.95;
  }

  .intro {
    background-color: #fff;
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .intro-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .intro h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
  }
  
  .intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
  }

  .projects-header {
    background-color: #b18c65;
    padding: 5rem 2rem 8rem 2rem;
    color: white;
    text-align: center;
  }
  
  .projects-header h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .projects-placeholder {
    max-width: 1000px;
    margin: 0 auto;
  }

  .site-footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem 2rem 2rem;
    font-size: 0.95rem;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-content a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-content a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .social-icons img {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s ease;
  }
  
  .social-icons img:hover {
    opacity: 0.7;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #aaa;
  }

  .about-section {
    background-color: #fff;
    color: #000;
    padding: 6rem 2rem;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1.5rem;
    display: block;
    margin: 0 auto;
  }

  .personality-section {
    background-color: #b18c65;
    color: white;
    padding: 6rem 2rem;
  }
  
  .personality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .personality-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 3rem;
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }
  
  .personality-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .personality-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .project-thumb {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-thumb img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 0.8rem;
  }
  
  .project-thumb h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #222;
  }
  
  .project-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }

  .projecten-link {
    display: block;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .projecten-link:hover {
    color: #000;
  }

 .portfolio-selectie {
  background-color: #b18c65;
  padding: 6rem 2rem;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.portfolio-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
}

.portfolio-card h3 {
  margin: 0;
  font-size: 1.2rem;
} 

body.foto-page, body.video-page {
  background-color: #b18c65;
  color: white;
}

.page-title {
  text-align: center;
  padding: 5rem 2rem 3rem 2rem;
  color: white;
}

.page-title h1 {
  font-size: 3rem;
  margin: 0;
}

.video-section iframe {
  border-radius: 1rem;
  width: 100%;
  height: 500px;
  max-width: 100%;
}

.video-wrapper {
  width: 100%;
  max-width: 1000px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

body.contact-clean {
  background-color: #fff;
  color: #222;
}

.contact-intro {
  padding: 6rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 2rem;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s ease-in-out;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 99;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
}

.modal-content {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1000px;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: 0.3s;
  user-select: none;
  transform: translateY(-50%);
}

.prev { left: 0; }
.next { right: 0; }

.prev:hover, .next:hover, .close:hover {
  color: #bbb;
}

.gallery-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gallery-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.gallery-item-portrait img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.modal-content img {
  width: auto;
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}