/* Algemene reset */

body {
  font-family: sans-serif;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: white;
}

/* Header */
.site-header {
  background-color: #000;
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 80px;
  width: auto;
}

/* Navigatie (desktop) */
.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: white;
  padding: 8px 0;
}

/* Hamburger (mobiel) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* Mobiel: onder 768px */
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #111;
    flex-direction: column;
    display: none;
  }

  .main-nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
    color: white;
  }
  .PC_ONLY {
	  display: none;
  }
  
  #titlebox {
	  width: 300px;
	  position: relative;
	  top: -70px;
	  display: none;
  }
  
  .homepage_title {
	  font-size: 50px;
  }
  
  .content {
	  position: relative;
	  left: 0px;
	  margin: 0px;
	  /* overflow: hidden; */
  }
  
  #newsblock {
	  position: relative;
	  width: 100%;
	  left: 0px;
	  top: 10px;
	  overflow: hidden;
	  margin: 0 auto;
	  padding-bottom: 100px;
	  min-width: 100%;
	  
  }
  
  .news-item {
	  width: 100%;
  }
  
  .mobile_only {
	display: block;
	position: relative;
	top: -50px;
	width: 350px;
	margin: 0 auto;
  }
    
  .footer_text_box {
	height: 20px;
	width: 300px;
	font-size: 12px;
	margin: 0 auto;
	position: relative;
	top: 5px;

 }

 .footer_text {
	width: 280px;
	text-align: center;
	margin: 0 auto;
 }
 
 #center_blok {
	 height: 100%;
	 width: 540px;
 }

 #overons_blok {
	 clear: both;
 }
 
 .voorstelling-item {
	 height: 100%;
 }
  
}

/* Zorg dat je content niet onder de header valt */
body {
  padding-top: 60px;
}
