/* ═══════════════════════════════════════════
   ENHANCED DROPDOWN MENU
   Leuker maar niet te gek - subtiel en duidelijk
═══════════════════════════════════════════ */

/* Nav dropdown styling updates */
#nav-drop {
  position: absolute; top: calc(100% + .85rem); right: 0;
  width: 380px;
  background: rgba(8,20,40,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: .8rem;
  opacity: 0;
  transform: translateY(-14px) scale(.97);
  pointer-events: none;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}

#nav-drop.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Grid layout voor items */
.drop-head {
  font-size: .62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: .6rem .8rem .8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.drop-head::before {
  content: '📋';
  font-size: .9rem;
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem .8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}

/* Subtle hover background */
.drop-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107,143,62,.08) 0%,
    rgba(107,143,62,.04) 100%
  );
  opacity: 0;
  transition: opacity .3s ease;
}

.drop-item:hover::before {
  opacity: 1;
}

.drop-item:hover {
  background: rgba(255,255,255,.06);
  transform: translateX(4px);
}

.drop-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  z-index: 1;
}

.drop-item:hover .drop-icon {
  background: rgba(107,143,62,.15);
  border-color: rgba(107,143,62,.3);
  transform: scale(1.1) rotate(-5deg);
}

.drop-txt {
  position: relative;
  z-index: 1;
}

.drop-txt strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .15rem;
  transition: color .2s;
}

.drop-txt span {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  line-height: 1.4;
  transition: color .2s;
}

.drop-item:hover .drop-txt span {
  color: rgba(255,255,255,.65);
}

.drop-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .6rem 0;
}

/* Chevron rotation animation */
.nav-more-btn .chevron {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}

.nav-more-btn.open .chevron {
  transform: rotate(180deg);
}

/* Stagger animation voor dropdown items */
.drop-item:nth-child(2) { transition-delay: 0.02s; }
.drop-item:nth-child(3) { transition-delay: 0.04s; }
.drop-item:nth-child(4) { transition-delay: 0.06s; }
.drop-item:nth-child(5) { transition-delay: 0.08s; }
.drop-item:nth-child(6) { transition-delay: 0.10s; }
.drop-item:nth-child(7) { transition-delay: 0.12s; }
