/* =========================
   GLOBAL HEADER
   ========================= */

.global-header {
  padding-left: 6vw;
  padding-right: 6vw;
	padding-top: 2vw;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------------------------
   Logo
   ------------------------- */

.site-logo img {
  height: 80px;
  max-width: none;
  object-fit: contain;
  display: block;
}

/* -------------------------
   Center nav / label
   ------------------------- */

.main-nav {
  flex: 1;
  text-align: center;
}

.main-nav .nav-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #16315A;
  line-height: 1;
}

/* -------------------------
   Header CTA Button
   ------------------------- */

.header-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;

  padding: 5px 72px 5px 32px;

  border: 3px solid #00B6AB;
  border-radius: 999px;

  background: transparent;
  color: #00B6AB;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;

  overflow: visible;
}

/* Arrow bubble – always visible */
.header-cta-button .cta-arrow {
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #00B6AB;
  color: #ffffff;

  border-radius: 50%;
  font-size: 22px;
  pointer-events: none;
}

/* Hover – intentionally boring */
.header-cta-button:hover {
  background: transparent;
  color: #00B6AB;
}

@media (max-width: 900px) {

  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta-button {
    order: 3;             /* move below logo + hamburger */
    width: 100%;
    margin-top: 16px;
    justify-content: center;
	padding: 8px 64px 8px 24px;
    font-size: 16px;
  }

}
