 /* ===================================
   GhostNaija Desktop Nav — Refined
   =================================== */

.desktopnav {
  background-color: #520000;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: block;
  letter-spacing: 0.2px;
}

/* Flex Layout */
.desktopnav-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktopnav-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Logo */
.desktopnav-logo a {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.desktopnav-logo a:hover {
  color: #ffffff;
}

/* Links */
.desktopnav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktopnav-links li {
  position: relative;
}

.desktopnav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 550;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.desktopnav-links a:hover {
  color: #ffc400;
}

.desktopnav-links a.active {
  color: #ffc400;
  font-weight: 600;
  border-bottom: 2px solid #ffc400;
}

/* Dropdown */
.desktopnav-dropdown {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  background: #6b0000;
  min-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  list-style: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: fadeDown 0.25s ease;
}

.desktopnav-dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktopnav-dropdown li a:hover {
  background: #7a0000;
  color: #ffc400;
}

.has-dropdown:hover > .desktopnav-dropdown {
  display: block;
}

/* Icons on right */
.desktopnav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.desktopnav-right .icon {
  cursor: pointer;
  color: #fff;
  transition: color 0.25s ease, transform 0.2s ease;
}

.desktopnav-right .icon:hover {
  color: #ffc400;
  transform: scale(1.15);
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


