* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
body {
  overflow: auto;
}
header {
  
  top: 0;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  position: fixed; /* of helemaal weghalen */


  position: sticky;
 
  
  
 
  
}
.nav-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  background-color:#d198b50c;
 
}

.logo-img {
  width: 300px;
  object-fit: cover;
}
.logo-img {
  transition: opacity 0.3s ease;
}

.logo-img.hidden {
  opacity: 0;
  pointer-events: none;
}


.menu-items {
  display: flex;
  list-style: none;
  align-items: center;
}

.menu-items a {
  text-decoration: none;
  padding: 0 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #bfa43a, #d9cfad, #e6c565, #f0ead6, #bfa43a);
  background-size: 100% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease;
}

.menu-items a:hover {
  font-weight: bold;
  animation: shine 1.5s linear infinite;
}

/* Dropdown */
.dropdown {
  position: relative;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #ffffff10;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
  color: rgba(0, 0, 0, 0.062);
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  list-style: none;
}

/* Search */
.search-box {
  position: absolute;
  top: 60px;
  right: 20px;
  background: white;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
  z-index: 1000;
}

.search-box input, .search-box button {
  padding: 5px 10px;
  font-size: 16px;
}

.search-box button {
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}
/* Footer */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 50px 40px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}



@media (max-width: 400px) {
 .logo-img {
  width: 250px;
  object-fit: cover;
  }
  .menu-items {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-bar {
  display: flex;
 flex-direction: column;
  align-items: center;
}

}
