body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* Header */
.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
  box-shadow: none;
  box-sizing: border-box;
}

.logo a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}
.logo span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #767676;
}

.links a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  transition: color 0.2s ease;
}
.links a:hover,
.logo a:hover {
  color: #666;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: fixed;
  top: 60px;
  right: 0;
  width: 60%;
  max-width: 200px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: #666;
}

.mobile-menu.open {
  display: flex;
}

/* Grid */
main {
  padding: 70px 40px 0px; /* ruimte voor fixed header */
}

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

.item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity .3s ease;
  padding: 10px;
}

.item:hover img {
  transform: scale(1.08);
}

.item:hover .overlay {
  opacity: 1;
}


.overlay .title a {
  color: #fff; /* standaardkleur zoals header */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

/* Hover alleen als je over de tekst zelf gaat */
.overlay .title a:hover {
  color: #666; /* hoverkleur zoals header */
  font-style: normal;
}

.title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.type {
  font-size: .6rem;
  text-transform: uppercase;
  opacity: .9;
}


/* Footer social links */
.social {
  text-align: center;
  margin: 40px 0;
  font-size: 0; /* verwijdert ongewenste whitespace */
}

.social a {
  display: inline-block;
  margin: 0 10px;
  font-size: initial; /* zet font-size terug voor de inhoud van de a-tag */
}



.contact-wrapper {
  display: flex;
  justify-content: center;
	padding: 40px 0px 0px
}


div.contact {
  text-align: left;
  font-size: 12px;
  color: #000;
}

.contact a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.contact a:hover {
  color: #666;
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
}





