:root {
  --menu-color: #FEFEFE;
}

#logo { font-weight: bold; color: #b64aa7; }

#siteMenu {
  background: var(--menu-color);
  color: #333;
  height: 50px;
  display: flex;
  align-items: stretch; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  backdrop-filter: blur(3px);
  padding: 0 5%;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

#menu {
  font-size: 1rem;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 6px 10px;
  font-weight: 500;
  white-space: nowrap;
  height: 100%;
	display: flex; align-items: center;
}

.dropdown-toggle a {
  color: inherit;
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background: var(--menu-color);
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  min-width: 160px;
  z-index: 999;
}

.dropdown-menu .nav-item {
  padding: 5px 0;
}

.nav-item:hover > .dropdown-menu {
  display: flex;
}

#nav-cta a {
  background: var(--accent-color, #06C);
  background: #575b82;
  color: white;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  white-space: nowrap;
}

#menu-button {
  display: none;
}
