@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500&display=swap');

/* Algemene reset en basisstijl */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Heebo', sans-serif;
}

/* Achtergrondvideo */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  background-image: url('fallback.png');
  background-size: cover;
  background-position: center;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blauwe filter over de video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 35, 65, 0.5); /* #112341 met 50% transparantie */
  z-index: 1;
}

/* Logo in het midden - tekst */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  color: #12264c;
  z-index: 10;
  font-family: 'Heebo', sans-serif;
  white-space: pre;
  text-shadow: 0 0 10px rgba(196, 108, 37, 1.0);
  text-align: center;
}

/* Dynamische opbouw van tekst */
#blue-slash {
  font-size: clamp(24px, 6vw, 120px);
  font-weight: bold;
  color: #12264c;
}

#orange-slash {
  font-size: clamp(20px, 5vw, 100px);
  font-weight: bold;
  color: #c46c25;
}

#typewriter-text {
  font-size: clamp(24px, 6vw, 120px);
  color: #12264c;
  font-family: 'Heebo', sans-serif;
  white-space: pre;
}

/* Witte balk boven en onder */
.white-bar {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: white;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ---------- css top menu ---------- */


.white-bar.top {
  top: 0;
}

.white-bar.bottom {
  bottom: 0;
}

/* Logo linksboven */
.top-left img {
  height: 40px;
  width: auto;
}

/* Menu rechtsboven */
.top-right {
  display: flex;
  align-items: center;
}

.top-menu {
  display: flex;
  gap: 20px;
}

.top-menu a {
  text-decoration: none;
  color: #12264c;
  font-size: clamp(16px, 1.2vw, 22px);

  font-family: 'Heebo', sans-serif;
  transition: color 0.3s ease;
}

.top-menu a:hover {
  color: #c46c25;
}

/* ---------- css footer ---------- */

.white-bar.bottom {
  justify-content: center;
}

.footer-text {
  font-size: clamp(14px, 1.1vw, 20px);
  color: #12264c;
  font-family: 'Heebo', sans-serif;
  text-align: center;
}

.footer-text a {
  color: #12264c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #c46c25;
}



/* ---------- MEDIA QUERIES ---------- */

@media (max-width: 1024px) {
  .white-bar {
    height: 80px;
    padding: 0 15px;
  }

  .top-left img {
    height: 30px;
  }


}

@media (max-width: 768px) {
  .white-bar {
    height: 60px;
    padding: 0 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .top-left img {
    height: 24px;
  }

  .top-right {
    margin-top: 5px;
  }

  .top-menu {
    gap: 10px;
    flex-wrap: wrap;
  }

  .top-menu a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    text-align: center;
  }

  .top-menu {
    display: none; /* optioneel: verberg menu op klein scherm */
  }
}


/* ---------- hamburger menu ---------- */

.hamburger {
  display: none; /* standaard verbergen */
  width: 40px;
  height: 40px;
  background-color: #12264c;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px;
  box-sizing: border-box;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: white;
  display: block;
  border-radius: 1px;
}

/* Alleen tonen op kleine schermen */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 20;
  }

  .top-menu {
    display: none; /* menu standaard verbergen op mobiel */
  }

  .top-menu.active {
    display: flex;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px; /* onder de witte balk */
    right: 0;
    width: 200px;
    z-index: 10;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .top-menu a {
    color: #12264c;
    font-size: 16px;
    padding: 8px 0;
  }
}
