/* ==========================================================
   NAVBAR — Desktop base (Responsive-ready hooks)
   - Desktop stays as-is
   - Responsive behavior must live in responsive.css
========================================================== */

nav.navbar{
  background-color: #C0CBC2 !important;
  margin-top: 0;
  padding: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  z-index: 20;
}

nav.navbar .container-fluid{
  min-height: 70px;
  align-items: center;
}

/* Side spacer (replaces inline min-width) */
.nav-side-spacer{
  min-width: 110px; /* same value you were using inline */
}

/* Center nav row */
#nav-option-container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: none; /* kill legacy vertical hack */
}

/* Links */
.nav-options a{
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: #FFFFFFB3;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.25s ease;
}

.nav-options a:hover{
  color: #ffffff;
}