/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
}

/* Navbar Container */
.navbar {
  background-color: #32607d;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFDBAD;
  text-decoration: none;
}

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

.nav-item {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #EBB878;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover, 
.nav-item:hover .nav-link {
  color: #A46D27;
  background-color: #517B96;
}

.dropdown-menu {
  position: absolute;
  top: 65px; 
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #1E4B69;
  min-width: 200px;
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

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

.dropdown-item {
  display: block;
  color: #EBB878;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f7fafc;
  color: #3182ce;
  padding-left: 1.5rem;
}
