/* Navigation Component - StatusDraft */

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links > a,
.nav-links > .nav-item {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links > a:hover,
.nav-links > .nav-item:hover {
  color: var(--white);
}

/* Dropdown Menu */
.nav-item {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item-text {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
  border-left: 3px solid transparent;
  align-items: flex-start;
}

.dropdown-item:hover {
  background: rgba(63, 0, 255, 0.1);
  border-left-color: var(--ultramarine);
}

.dropdown-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--ultramarine-light);
  margin-top: 2px;
}

.dropdown-item-content {
  flex: 1;
}

.dropdown-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  display: block;
}

.dropdown-item-desc {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--ultramarine);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--ultramarine-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--ultramarine-glow);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}
