/* Base Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #10345B; /* Deep blue */
  padding: 1rem 2rem;
  position: relative;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #FFFFFF; /* White text */
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #E9C46A; /* Gold accent on hover */
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #10345B;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  margin-top: 1rem;
  z-index: 1000;
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu li a {
  color: #FFFFFF;
}

.dropdown-menu li a:hover {
  color: #E9C46A;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    width: 100%;
    background: #10345B;
    border-top: 1px solid #E9C46A;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    position: static;
  }
}
