/* =============================================================
   NAV.CSS — Top navigation bar
============================================================= */

#main-nav {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

#main-nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}

#main-nav a:hover {
  color: var(--gold);
}

/* Centered logo image */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Schedule A Call button */
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #main-nav {
    padding: 14px 20px;
  }

  .nav-left a:not(:first-child) {
    display: none;
  }

  .nav-right a:first-child {
    display: none;
  }

  .nav-logo img {
    height: 68px;
  }
}

/* Logo + byline layout */
.nav-logo {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.nav-byline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

.nav-byline-img {
  height: 68px;
  width: auto;
  opacity: 0.7;
}

.nav-logo img {
  height: 68px;
  width: auto;
}