/* NAVBAR.CSS — iPad & desktop perfect */

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 900px;

  height: 56px;
  box-sizing: border-box;

  background-color: #a3d2f2;
  padding: 12px 20px;

  border-radius: 12px;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0.8); /*0 4px 10px rgba(0,0,0,0.3);*/

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: opacity 0.25s, top 0.25s;
  z-index: 9000;

  font-family: Arial, sans-serif;
}

.navbar .logo svg {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  fill: black;
}

/* Links */
.nav-links {
  display: flex;
  gap: 14px;
}

.nav-links a {
  font-size: 1.05rem;
  padding: 6px 10px;
  border-radius: 6px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: background-color .2s, transform .2s;
}

.nav-links a:hover {
  background-color: #79b3e0;
  transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 2px;
}

/* Mobiel */
@media (max-width: 650px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: 20px;
    width: 160px;
    background: #a3d2f2;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    display: none;
    border-radius: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
