.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 10px;
  margin: 0;
}

.menu li {
  position: relative;
}

.menu > li > a {
  display: inline-block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  padding: 10px 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.menu > li > a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 8px rgba(180, 200, 255, 0.1);
}

.dropdown > a::after {
  content: '';
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  margin-left: 6px;
  transform: rotate(45deg);
  vertical-align: middle;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30, 30, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  min-width: 160px;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-family: 'IM Fell English SC', serif;
}

.dropdown-content li a:hover {
  text-decoration: underline;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  padding: 10px;
  z-index: 1100;
  cursor: pointer;
}

.menu-current {
  display: none;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  padding: 10px 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-left: 50px;
}

.menu-current.active {
  display: none; 
}

.hamburger span {
  background: white;
  height: 3px;
  border-radius: 2px;
  width: 100%;
  transition: 0.3s ease;
}

.hamburger.active {
  display: none; 
}

.hamburger.active span:nth-child(1) {
  display: none; /*transform: rotate(45deg) translate(5px, 5px);*/
}

.hamburger.active span:nth-child(2) {
  display: none; /*opacity: 0;*/
}

.hamburger.active span:nth-child(3) {
  display: none; /*transform: rotate(-45deg) translate(6px, -6px);*/
}

@media (max-width: 768px) {

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .menu-current {
    display: inline-block;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    display: none;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
  }

  .menu.show {
    display: flex;
  }

  .navbar,
  .navbar-gold,
  .navbar-silver,
  .navbar-planner,
  .navbar-energy,
  .navbar-deepblue {
    text-align: center;
    padding-left: 0px;
    overflow: visible !important;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 9px;
    left: 20px;
  }
}

.navbar-gold {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, #bfa46f 0%, #8f753c 100%);
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -2px 2px rgba(0, 0, 0, 0.2);
}

/* Glans-overlay */
.navbar-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(255, 255, 255, 0) 80%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-gold::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* Menu & tekst */
.navbar-gold .menu {

  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-gold .menu li {
  position: relative;
}

.navbar-gold .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #fffbe8;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-gold .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ffe6a0;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-gold .menu li a:hover,
.navbar-gold .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 236, 185, 0.7);
}

.navbar-gold .menu li a:hover::after,
.navbar-gold .menu li a:focus::after {
  width: 100%;
}

.navbar-gold.glow-border {
  box-shadow: 0 0 10px 2px rgba(255, 230, 150, 0.6);
}

.navbar-planner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, #ff7f50 0%, #d45daa 100%);
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3), /* topglans */
    inset 0 -2px 2px rgba(0, 0, 0, 0.2);       /* onderrand */
}

/* Glans-overlay */
.navbar-planner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.02) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Scherpe highlight-streep */
.navbar-planner::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* Menu & tekst */
.navbar-planner .menu {

  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-planner .menu li {
  position: relative;
}

.navbar-planner .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #fff2ea;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-planner .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ffd8b0;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-planner .menu li a:hover,
.navbar-planner .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 180, 210, 0.7);
}

.navbar-planner .menu li a:hover::after,
.navbar-planner .menu li a:focus::after {
  width: 100%;
}

.navbar-planner.glow-border {
  box-shadow: 0 0 10px 2px rgba(255, 140, 200, 0.6);
}

.navbar-energy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, #FF9B37 10%, #00d4ff 100%);
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -2px 2px rgba(0, 0, 0, 0.2);
}

/* Glans-overlay */
.navbar-energy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-energy::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* Menu & tekst */
.navbar-energy .menu {

  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-energy .menu li {
  position: relative;
}

.navbar-energy .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #fffdf5;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-energy .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #fff3c4;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-energy .menu li a:hover,
.navbar-energy .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 200, 0.7),
               0 0 8px rgba(0, 255, 255, 0.3);
}

.navbar-energy .menu li a:hover::after,
.navbar-energy .menu li a:focus::after {
  width: 100%;
}

.navbar-energy.glow-border {
  box-shadow: 0 0 10px 2px rgba(255, 180, 50, 0.5),
              0 0 15px 2px rgba(0, 220, 255, 0.5);
}

.navbar-deepblue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, #081222 0%, #142040 100%);
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    inset 0 -2px 2px rgba(0, 0, 0, 0.4);
}

/* Glans-overlay */
.navbar-deepblue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 10%,
    rgba(255, 255, 255, 0.01) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-deepblue::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(120, 180, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* Menu & tekst */
.navbar-deepblue .menu {

  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-deepblue .menu li {
  position: relative;
}

.navbar-deepblue .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #d4e8ff; /* zachte, lichtere blauw */
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-deepblue .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #90cdf4; /* lichter blauw als underline */
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-deepblue .menu li a:hover,
.navbar-deepblue .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(120, 200, 255, 0.6);
}

.navbar-deepblue .menu li a:hover::after,
.navbar-deepblue .menu li a:focus::after {
  width: 100%;
}

.navbar-deepblue.glow-border {
  box-shadow: 0 0 10px 2px rgba(56, 189, 248, 0.5);
}

.navbar-silver {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, #e0e0e0 0%, #444444 100%);
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -2px 2px rgba(0, 0, 0, 0.2);
}

/* Glans-overlay */
.navbar-silver::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.20) 10%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0) 80%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-silver::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* Menu & tekst */
.navbar-silver .menu {

  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-silver .menu li {
  position: relative;
}

.navbar-silver .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #f2f2f2;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-silver .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #dddddd;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-silver .menu li a:hover,
.navbar-silver .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(240, 240, 240, 0.7);
}

.navbar-silver .menu li a:hover::after,
.navbar-silver .menu li a:focus::after {
  width: 100%;
}

.navbar-silver.glow-border {
  box-shadow: 0 0 10px 2px rgba(230, 230, 230, 0.6);
}

/* ========== Vista Monday Navbar ( -spel1 ) ========== */

.navbar-spel1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  /*background: linear-gradient(180deg, #FFF7F4 0%, #FFE3E8 50%, #FFC7D3 100%);*/
  background: linear-gradient(180deg, #FFF4F2 0%, #FFE4DF 50%, #FFB4A4 100%);
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(243, 140, 43, 0.25);
}

/* Glans-overlay */
.navbar-spel1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 10%,
    rgba(255, 255, 255, 0.1) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-spel1::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(243, 140, 43, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* Menu & tekst */
.navbar-spel1 .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-spel1 .menu li {
  position: relative;
}

.navbar-spel1 .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #5A3B2E;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-spel1 .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #F38C2B;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-spel1 .menu li a:hover,
.navbar-spel1 .menu li a:focus {
  color: #000000;
  text-shadow: 0 0 6px rgba(243, 140, 43, 0.5);
}

.navbar-spel1 .menu li a:hover::after,
.navbar-spel1 .menu li a:focus::after {
  width: 100%;
}

.navbar-spel1.glow-border {
  box-shadow: 0 0 10px 2px rgba(243, 140, 43, 0.3);
}


/* ========== Perkament Navbar ( spel2 ) ========== */

.navbar-spel2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, #0E1724 0%, #1B2A3F 100%);
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.05),
    inset 0 -2px 4px rgba(0, 0, 0, 0.6);
}

/* Glans-overlay */
.navbar-spel2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 10%,
    rgba(255, 255, 255, 0.02) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-spel2::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(118, 180, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* Menu & tekst */
.navbar-spel2 .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-spel2 .menu li {
  position: relative;
}

.navbar-spel2 .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #E5ECF4; /* zacht wit-blauw */
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-spel2 .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #76B4FF; /* accentblauw underline */
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-spel2 .menu li a:hover,
.navbar-spel2 .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(118, 180, 255, 0.7);
}

.navbar-spel2 .menu li a:hover::after,
.navbar-spel2 .menu li a:focus::after {
  width: 100%;
}

.navbar-spel2.glow-border {
  box-shadow: 0 0 10px 2px rgba(118, 180, 255, 0.4);
}

/* ========== Perkament Navbar ( -perkament ) ========== */
.navbar-spel3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-image: url('../img/parchment.jpg');
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(80, 60, 40, 0.2);
}

/* Glans-overlay */
.navbar-spel3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 10%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-spel3::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(139, 94, 60, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* Menu & tekst */
.navbar-spel3 .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-spel3 .menu li {
  position: relative;
}

.navbar-spel3 .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #4B3A2A;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-spel3 .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #8B5E3C;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-spel3 .menu li a:hover,
.navbar-spel3 .menu li a:focus {
  color: #000000;
  text-shadow: 0 0 6px rgba(139, 94, 60, 0.4);
}

.navbar-spel3 .menu li a:hover::after,
.navbar-spel3 .menu li a:focus::after {
  width: 100%;
}

.navbar-spel3.glow-border {
  box-shadow: 0 0 10px 2px rgba(139, 94, 60, 0.25);
}


.navbar-spel4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;

  background: linear-gradient(180deg, #0B2F1F 0%, #123F29 50%, #1A4F34 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(34, 85, 34, 0.3),
    0 0 12px rgba(34, 85, 34, 0.2);
}

/* ✨ Glans-overlay */
.navbar-spel4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 10%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* 🌟 Highlight-streep bovenin */
.navbar-spel4::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 223, 191, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* Menu-items */
.navbar-spel4 .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-spel4 .menu li {
  position: relative;
}

.navbar-spel4 .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #FFDFBF;
  font-weight: 600;
  font-family: 'Cinzel Decorative', cursive;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-spel4 .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #FFDFBF;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-spel4 .menu li a:hover,
.navbar-spel4 .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 223, 191, 0.6);
}

.navbar-spel4 .menu li a:hover::after,
.navbar-spel4 .menu li a:focus::after {
  width: 100%;
}

/* Optioneel extra glow */
.navbar-spel4.glow-border {
  box-shadow: 0 0 10px 2px rgba(255, 223, 191, 0.3);
}

.navbar-spel9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 12px;

  background: linear-gradient(180deg, #1A5E63 0%, #228B7D 50%, #2EA67D 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(42, 130, 97, 0.3),
    0 0 12px rgba(66, 197, 211, 0.25);
}

/* ✨ Glans-overlay */
.navbar-spel9::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 10%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* 🌟 Highlight-streep bovenin */
.navbar-spel9::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 232, 125, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* Menu-items */
.navbar-spel9 .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-spel9 .menu li {
  position: relative;
}

.navbar-spel9 .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #e0fff9; /* mint-wit */
  font-weight: 600;
  font-family: 'Cinzel Decorative', cursive;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-spel9 .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ffe87d; /* goud */
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-spel9 .menu li a:hover,
.navbar-spel9 .menu li a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 232, 125, 0.6);
}

.navbar-spel9 .menu li a:hover::after,
.navbar-spel9 .menu li a:focus::after {
  width: 100%;
}

/* Optioneel extra glow */
.navbar-spel9.glow-border {
  box-shadow: 0 0 10px 2px rgba(66, 197, 211, 0.3);
}


/* ========== NAVBAR PLAN (GLASS / SPACE, CLEAN) ========== */

.navbar-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 60px; /* zelfde als navbar-silver */
  position: relative;
  z-index: 10;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    rgba(20, 24, 45, 0.85) 0%,
    rgba(5, 7, 15, 0.95) 100%
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 12px; /* zelfde feel als silver */
  border: 1px solid rgba(120, 140, 255, 0.25);

  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    inset 0 -2px 2px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(30, 50, 120, 0.4);
}

/* Subtiele glans-overlay */
.navbar-plan::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    140deg,
    rgba(160, 180, 255, 0.14) 10%,
    rgba(120, 150, 255, 0.28) 38%,
    rgba(0, 0, 0, 0) 80%
  );

  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  border-radius: inherit;
}

/* Highlight-streep bovenin */
.navbar-plan::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  right: 10px;
  height: 6px;

  background: linear-gradient(
    to right,
    rgba(120, 160, 255, 0) 0%,
    rgba(170, 190, 255, 0.45) 50%,
    rgba(120, 160, 255, 0) 100%
  );

  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}

/* Menu & tekst (zelfde typografie als silver) */
.navbar-plan .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  position: relative;
  z-index: 3;
}

.navbar-plan .menu li {
  position: relative;
}

.navbar-plan .menu li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;

  color: #E0E6FF;
  font-weight: 500;

  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Onderstreep */
.navbar-plan .menu li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;

  background: linear-gradient(
    to right,
    rgba(140, 180, 255, 0.4),
    rgba(200, 220, 255, 0.9),
    rgba(140, 180, 255, 0.4)
  );

  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Hover */
.navbar-plan .menu li a:hover,
.navbar-plan .menu li a:focus {
  color: #FFFFFF;
  text-shadow: 0 0 6px rgba(150, 180, 255, 0.6);
}

.navbar-plan .menu li a:hover::after,
.navbar-plan .menu li a:focus::after {
  width: 100%;
}

/* Glow-border variant */
.navbar-plan.glow-border {
  box-shadow:
    0 0 10px 2px rgba(140, 180, 255, 0.5),
    inset 0 0 10px rgba(140, 180, 255, 0.18);
}



@media (max-width: 768px) {
  /* Zorg dat dropdown niet wordt afgeknipt */
  .navbar,
  .navbar-gold,
  .navbar-silver,
  .navbar-plan,
  .navbar-planner,
  .navbar-energy,
  .navbar-deepblue,
  .navbar-spel1,
  .navbar-spel2,
  .navbar-spel3,
  .navbar-spel9,
  .navbar-spel4 {
    position: relative;
    overflow: visible !important;
    z-index: 100;
  }

/* Overschrijf per variant met hogere specificiteit */
  .navbar-spel1 .menu,
  .navbar-spel2 .menu,
  .navbar-spel3 .menu,
  .navbar-spel4 .menu,
  .navbar-spel9 .menu,
  .navbar-gold .menu,
  .navbar-silver .menu,
  .navbar-plan .menu,
  .navbar-planner .menu,
  .navbar-energy .menu,
  .navbar-deepblue .menu {
    display: none;              /* verberg standaard op mobiel */
    /*position: fixed; */           /* of absolute, jouw keuze */
    top: 60px; left: 0; right: 0;
    z-index: 2000;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: 0 0 12px 12px;
    background: rgba(20,24,32,0.92);
    backdrop-filter: blur(4px);
    text-align: center;
  }

  .navbar-spel1 .menu.show,
  .navbar-spel2 .menu.show,
  .navbar-spel3 .menu.show,
  .navbar-spel4 .menu.show,
  .navbar-spel9 .menu.show,
  .navbar-gold .menu.show,
  .navbar-silver .menu.show,
  .navbar-planner .menu.show,
  .navbar-plan .menu.show,
  .navbar-energy .menu.show,
  .navbar-deepblue .menu.show {
    display: flex;
  }

.menu {
     position: fixed;
    top: 60px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: 0 0 12px 12px;
    z-index: 2000;  /* boven header/overlay */
    /* minder hard zwart, iets blur voor glas-effect */
    background: rgba(20, 24, 32, 0.92);
    backdrop-filter: blur(4px);
  }
  .menu.show { display: flex; }

  .navbar-spel1 .menu { background: rgba(255, 244, 242, 0.98); color:#5A3B2E; }
  .navbar-spel2 .menu { background: rgba(14, 23, 36, 0.96);  }
  .navbar-spel3 .menu { background: rgba(255, 248, 240, 0.96); color:#4B3A2A; }
  .navbar-spel4 .menu { background: rgba(11, 47, 31, 0.96);  }
  .navbar-spel9 .menu { background: rgba(11, 47, 31, 0.96);  }
  /* desgewenst ook link-kleuren per variant tunen */
  .navbar-spel1 .menu a { color:#5A3B2E; }
  .navbar-spel3 .menu a { color:#4B3A2A; }

}