/* Navbar Styles */
#main-nav {
  z-index: 1000;
}

/* Mega Menu Container */
.mega-menu {
  position: absolute;
  top: 96px; /* standard height adjusted to 96px/h-24 */
  left: 0;
  width: 100%;
  background: var(--cream-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 40px 60px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu li, .mega-menu .group {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.mega-menu.active li, .mega-menu.active .group {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mega-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mega-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mega-menu.active li:nth-child(4) { transition-delay: 0.25s; }

.mega-menu.active .group:nth-child(1) { transition-delay: 0.3s; }
.mega-menu.active .group:nth-child(2) { transition-delay: 0.4s; }

