/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;

  color: #111;
}

/* ================= LINKS ================= */
a {
  color: #111;
  text-decoration: none;
}

/* ================= DESKTOP MENU ================= */
nav.menu {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 20px 20px 10px;
  font-size: 18px;
}

/* ================= MOBIEL ================= */
.mobile-bar {
  display: none;
  padding: 10px 20px;
}
.hamburger {
  font-size: 32px;
  cursor: pointer;
}

/* ================= MOBIEL MENU ================= */
.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: #fff;
  padding: 30px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}
.menu-mobile.show {
  transform: translateX(0);
}
.menu-mobile a {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
}

/* ================= CONTENT ================= */
main {
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

h1 {
 
  font-size: clamp(40px, 8vw, 100px);
  margin: 10px 0;
  font-weight: normal;
  letter-spacing: 0.3em; /* Voegt ruimte tussen letters toe */
}
 main h2 {
  font-size: clamp(40px, 8vw, 60px);
  margin: 60px 0 40px; /* Meer ruimte boven (30px) en onder (40px) */
  font-weight: normal;
}

/* Container voor hero-image en statement */
.hero-statement-container {
    width: 100%;
    max-width: 1200px; /* Maximale breedte voor grote schermen */
    margin: 0 auto; /* Centreer de container */
    padding: 0 35px; /* Ruimte aan de zijkanten */
}

/* Hero-image: breedte bepaalt de breedte van de statement */
.hero-image {
    width: 100%;
    max-width: 1200px; /* Maximale breedte (pas aan naar wens) */
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    margin: 0 auto 40px; /* Centreer de afbeelding */
    display: block; /* Zorgt voor consistente margins */
}
/* h1: past zich aan aan de container en blijft schaalbaar */


/* Statement: altijd even breed als de hero-image */
.statement {
    width: 100%;
    max-width: 1050px; /* Zelfde max-width als hero-image */
    margin: 0 auto 40px; /* Centreer de tekst */
    font-style: italic;
    font-size: clamp(12px, 2vw, 18px);
    text-align: justify;
    line-height: 1.6;
    hyphens: auto;
    padding: 0 20px; /* Ruimte aan de zijkanten voor kleine schermen */
}

/* Mobiele weergave: beide elementen nemen volle breedte */
@media (max-width: 768px) {
    .hero-image,
    .statement {
        max-width: 100%; /* Volledige breedte op mobiel */
        padding: 0 15px; /* Ruimte aan de zijkanten */
    }

    .statement {
        text-align: justify; /* Bloktekst op mobiel */
    }
}

/* ================= GALLERY ================= */
.gallery {
  display: none;
  padding-bottom: 60px;
}

.gallery.show {
  display: block;
}

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

.grid img {
  width: 100%;
  
  object-fit: cover;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================= LIGHTBOX ================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253, 251, 251, 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 5vh 5vw;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 75vh;
}

.lightbox-close {
  position: absolute;
  top: 50px;
  right: 100px;
  font-size: 60px;
  cursor: pointer;
}

.lightbox-title {
  margin-bottom: 20px;
  font-size: clamp(18px, 3vw, 32px);
}


/* ========== GALLERY GRID ========== */
.gallery {
  display: flex;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 180px);
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.grid img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.grid img:hover {
  opacity: 0,3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  nav.menu { display: none; }
  .mobile-bar { display: flex; }

 /* basis leesmaat */
  body {
    font-size: 15px;
    line-height: 1.55;
  }

  /* paginatitels */
  h1 {
    font-size: clamp(30px, 9vw, 44px);
    margin: 20px 0 12px;
    letter-spacing: 0.01em; /* Voegt ruimte tussen letters toe */
  }

  h2 {
    font-size: clamp(26px, 8vw, 36px);
    margin: 18px 0 10px;
  }

  /* subtitels / sectietitels */
  h3 {
    font-size: 18px;
    margin: 16px 0 8px;
  }

  /* lopende tekst */
  p {
    font-size: 12px;
    margin-bottom: 1em;
  }

  /* CV lijsten */
  .cv-full ul li,
  .cv-short ul li {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  /* mobiel menu */
  .menu-mobile a {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
}


/* ================= CONTACT PAGE ================= */

.contact-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.contact-page h2 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 40px;
}

.contact-block {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.contact-name {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-block a {
  color: inherit;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.contact-footer {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  
}

 
