/* Task 1: Header Navigation Styling - Visual Hierarchy */

/* 1. PRIVATE CONSULTATION - Brightest/Most Prominent (Primary CTA) */
.nav-cta {
  background: #d4b878 !important;
  color: #050505 !important;
  font-weight: 500 !important;
  box-shadow: 0 0 18px rgba(212, 184, 120, 0.25), 0 0 4px rgba(212, 184, 120, 0.15) !important;
  text-shadow: 0 0 1px rgba(5, 5, 5, 0.1) !important;
}
.nav-cta:hover {
  background: #e0c88e !important;
  box-shadow: 0 0 24px rgba(224, 200, 142, 0.35), 0 0 6px rgba(224, 200, 142, 0.2) !important;
}

/* 2. OWLS & WOLVES - Second Brightest */
.logo-text {
  color: #fff8eb !important;
}
.logo-text small {
  color: #c4a265 !important;
}

/* 3. CLIENT PORTAL - Increased Brightness/Visibility */
.nav-portal {
  color: #c8b898 !important;
  border-color: #8a7d6a !important;
}
.nav-portal:hover {
  color: #d4b878 !important;
  border-color: #c4a265 !important;
}

/* 4. All Other Nav Tabs - Slightly Brighter but Secondary */
.nav-center a {
  color: #918b86 !important;
}
.nav-center a:hover {
  color: #c4a265 !important;
}
