/* --- GLOBAL BASE --- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* --- DESKTOP HEADER CONTAINER --- */
#main-nav-bar.header {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1000;
  background: var(--nav-background);
  border-radius: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(-12px);
  display: block; /* Shown by default */
}

#main-nav-bar.header.loaded {
  opacity: 1;
  transform: none;
}

#main-nav-bar .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  
}

/* --- DESKTOP BRANDING --- */
#main-nav-bar #headbrand {
  color: inherit;
  text-decoration: none;
}

#main-nav-bar #headbrand:hover,
#main-nav-bar #headbrand:focus,
#main-nav-bar #headbrand:visited {
  text-decoration: none;
}

#main-nav-bar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 5px 12px;
  border-radius: 8px;
}

#main-nav-bar .brand img { height: 35px; width: auto; }
#main-nav-bar .brand .title { font-weight: 700; color: var(--nav-background); font-size: 1rem; white-space: nowrap;  }
#main-nav-bar .brand .sub { font-size: 0.85rem; color: var(--nav-background); }
#main-nav-bar .brand-separator { width: 1px; height: 20px; background: #eee; margin-left: 10px; }

/* --- DESKTOP NAV LINKS --- */
#main-nav-bar .nav { display: flex; gap: 15px; align-items: center; }
#main-nav-bar .nav a { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 0.9rem; 
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

#main-nav-bar .nav a:hover, 
#main-nav-bar .nav a.active {
  color: #ffd166;
  border-bottom: 2px solid #ffd166;
}

/* --- DESKTOP DROPDOWNS --- */
#main-nav-bar .dropdown { position: relative; }
#main-nav-bar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 10px 0;
  z-index: 1200;
}

#main-nav-bar .dropdown:hover .dropdown-menu { display: block; }

#main-nav-bar .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #0a2c66 !important;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent !important;
}

#main-nav-bar .dropdown-menu a:hover {
  background: rgba(10, 44, 102, 0.05);
  color: #ffd166 !important;
}

#main-nav-bar .dropdown-menu a.active {
  background: rgba(255, 209, 102, 0.14);
  color: #ffd166 !important;
  border-bottom-color: #ffd166 !important;
}

/* HIDE ON MOBILE */
@media (max-width: 1024px) {
  #main-nav-bar { display: none !important; }
}
