/* ============================================================
   STEVE & CO. — CLIENT FEEDBACK ROUND (April 2026)
   ============================================================ */

/* ── 6. Nav button text: copper gold #C4A265 ─────────────────── */
#site-navigation ul li a,
.main-navigation ul li a,
#ocean-main-nav ul li a {
  color: #C4A265 !important;
}
#site-navigation ul li a:hover,
.main-navigation ul li a:hover,
#ocean-main-nav ul li a:hover,
#site-navigation ul li.current-menu-item > a,
#site-navigation ul li.current-menu-ancestor > a {
  color: #FFFFFF !important;
}

/* Footer link text copper gold — matches nav per client feedback 2.4 */
.sc-footer-links li a,
.sc-footer-nav a,
footer .menu a,
footer nav a {
  color: #C4A265 !important;
}
.sc-footer-links li a:hover,
.sc-footer-nav a:hover,
footer .menu a:hover,
footer nav a:hover {
  color: #FFFFFF !important;
}

/* Broader nav selectors to catch OceanWP variants */
#site-header a,
.oceanwp-mobile-menu-icon a,
#mobile-nav a,
.sidebar-menu a {
  color: #C4A265 !important;
}

/* PROPERTIES wordmark under logo in copper gold */
.sc-brand-properties,
.site-description,
.site-description-wrap {
  color: #C4A265 !important;
}

/* ── 5. Hero subtitle on one line ────────────────────────────── */
.sc-hero__subtitle {
  white-space: nowrap !important;
  font-size: 15px !important;
}
@media (max-width: 768px) {
  .sc-hero__subtitle {
    white-space: normal !important;
    font-size: 14px !important;
  }
}

/* ── 16-17. Channel Partners — bigger + marquee ticker ────────── */
.sc-partners--ticker {
  padding: 80px 0 !important;
}
.sc-partners__ticker-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.sc-partners__ticker-wrap::before,
.sc-partners__ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.sc-partners__ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--sc-white), transparent);
}
.sc-partners__ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--sc-white), transparent);
}
.sc-partners__ticker {
  display: flex;
  align-items: center;
  gap: 0;
  animation: sc-ticker-scroll 30s linear infinite;
  width: max-content;
}
.sc-partners--ticker .sc-partner-item {
  flex: 0 0 auto;
  padding: 24px 40px;
  border-right: 1px solid rgba(44,44,44,.07);
  border-bottom: none;
}
@keyframes sc-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sc-partners__ticker:hover {
  animation-play-state: paused;
}

/* ── 18-19. Footer — no logo, brighter text ──────────────────── */
.sc-footer-tagline {
  margin-top: 0 !important;
}
.sc-footer-address {
  color: rgba(255,255,255,.8) !important;
}
.sc-footer-phone,
.sc-footer-email {
  color: rgba(255,255,255,.8) !important;
}
.sc-footer-legal {
  color: rgba(255,255,255,.8) !important;
}
.sc-footer-copyright {
  color: rgba(255,255,255,.8) !important;
}
.sc-footer-rera-label,
.sc-footer-rera-sub {
  color: rgba(255,255,255,.6) !important;
}
