/* ============================================================
   OVERRIDES.CSS — Easy manual edits. This file loads last
   and wins over styles.css. Edit freely here.
   ============================================================ */

/* ── LOGO ─────────────────────────────────────────────────── */
@media (min-width: 641px) {
  .logo-mark {
    height: 100px;
    /* logo size */
    width: 100px;
    border-radius: 0;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    margin: -26px 0 -26px 0;
    /* negative = logo overflows nav without pushing height */
    margin-right: -16px;
    /* gap between logo and brand name */
  }
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.nav-inner {
  padding: 6px 48px;
  /* top/bottom padding controls nav height */
  gap: 28px;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ── NAV LINKS ────────────────────────────────────────────── */
.nav-link,
.nav-contact-btn {
  font-weight: 600;
  font-size: 0.86rem;
}

/* ── BOOK A SESSION BUTTON (navbar) ──────────────────────── */
.btn-primary.nav-cta,
a.btn-primary.nav-cta,
#nav-cta-book {
  font-size: 1.2rem;
  padding: 13px 28px;
  font-weight: 700;
  border-radius: 100px;
}

/* ── FREE INTRO SESSION BUTTON (navbar) ──────────────────── */
.btn-free-session,
a.btn-free-session {
  background: transparent;
  color: #d59a3f;
  /* --peach */
  border: 1.5px solid #d59a3f;
  box-shadow: none;
}

.btn-free-session:hover,
a.btn-free-session:hover {
  background: #d59a3f;
  color: #2a221b;
}

/* ── MATCHMAKER BAR ───────────────────────────────────────── */
.matchmaker-bar.top-banner {
  padding: 8px 0;
}

.matchmaker-bar .matchmaker-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.matchmaker-bar .matchmaker-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-start;
}

.matchmaker-bar .anim-chevron {
  margin-left: 0;
  flex-shrink: 0;
}

.matchmaker-bar .matchmaker-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-matchmaker-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 9px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn-matchmaker-free-outline {
  background: transparent;
  color: #d59a3f;
  border: 1.5px solid #d59a3f;
  padding: 9px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* ── EXPERT CARDS — photo background, position, scale ───────── */
.expert-photo-wrap {
  background: #ffffff;
}

.expert-photo {
  object-position: 25% calc(25% - 1cm);
  /* shift photo up; change value to adjust */
  transform: scale(1.04);
  transform-origin: center top;
}

/* ── EXPERT CARD BUTTONS — right aligned ─────────────────── */
.expert-card-btns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* ── MARQUEE SPEED ────────────────────────────────────────── */
/* Controlled by JS in index.html (speed variable), not CSS */

/* ── SAFETY RADIO — selected highlight ───────────────────── */
.safety-radio-group label.radio-selected {
  border-color: #0f606b;
  background: rgba(15, 96, 107, 0.08);
}

.safety-radio-group label.radio-selected span {
  color: #0f606b;
  font-weight: 600;
}

/* ── EXPERT CAROUSEL — center when few cards ─────────────── */
.experts-carousel {
  justify-content: center;
}

body.page-home .nav-links {
  justify-content: flex-end;
  flex: 1;
}

/* ── BOOKING PAGES — therapist selector photos bigger ────── */
.t-select-card img {
  width: 120px;
  height: 120px;
}

.t-select-card {
  padding: 24px 12px;
}

/* ── HOME NAV — right-align links ────────────────────────── */
body.page-home .nav-links {
  justify-content: flex-end;
  flex: 1;
}