/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
}

/* ======================
   Header
====================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  padding: 30px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #fff;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 50px;      /* Isabelle-achtig formaat */
  width: auto;
  display: block;

  position: relative;
  top: 1px;          /* micro-uitlijning */
}

/* Navigatie */
nav {
  display: flex;
  gap: 24px;

  position: relative;
  top: 2px;          /* nav iets lager dan logo */
}

nav a {
  font-size: 13.5px;
  letter-spacing: 0.6px;
  text-decoration: none;
  color: #111;
}

/* ======================
   Main / Gallery spacing
====================== */

main {
  padding-top: 150px;    /* ruimte voor fixed header */
}

/* Gallery */
.gallery {
  max-width: 1400px;
  margin: 0 auto;

  padding: 40px 40px 0;  /* FIX: bovenste rij volledig zichtbaar */

  column-count: 3;
  column-gap: 30px;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  cursor: pointer;
}

/* Geen hover-effect */
.gallery img:hover {
  opacity: 1;
}

/* ======================
   Contactpagina
====================== */

.contact {
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;

  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;

  font-size: 13.5px;
}
.contact p {
  margin: 6px 0;
}


.contact a {
  text-decoration: none;
  color: #111;
}
.contact p,
.contact a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.6px;
}


/* ======================
   Lightbox
====================== */

#lightbox {
  position: fixed;
  inset: 0;

  background: rgba(255, 255, 255, 0.95);
  display: none;

  justify-content: center;
  align-items: center;

  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* ======================
   Responsive
====================== */

@media (max-width: 900px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  header {
    padding: 20px;
  }

  main {
    padding-top: 130px;
  }

  .gallery {
    column-count: 1;
    padding: 30px 20px 0;
  }
}
@media (max-width: 600px) {

  header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
  }

  .logo img {
    height: 40px; /* kleiner logo op mobiel */
  }

  nav {
    gap: 18px;
    top: 0;
  }

  main {
    padding-top: 160px; /* iets meer ruimte voor hogere header */
  }
}
@media (max-width: 600px) {
  .contact {
    font-size: 13.5px;
    line-height: 1.6;
    letter-spacing: 0.6px;
  }

  .contact p,
  .contact a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}
body {
  -webkit-text-size-adjust: 100%;
}

