/* ============================================================
   cta.css — "From Monrovia to the World" call-to-action.
   Rounded card with a background image, centered MAP logo,
   big display headline, and an action button.
   ============================================================ */

.cta {
  background-color: #ffffff;
  /* white band on top only; no bottom space so the card sits flush
     against the section below; no side padding so it spans full width */
  padding: clamp(2.5rem, 6vw, 5rem) 0 0;
}
/* Flush variant: no top space either (e.g. when a marquee sits directly above) */
.cta--flush { padding-top: 0; }

.cta__card {
  position: relative;
  isolation: isolate;
  width: 100%;                 /* full-bleed, edge to edge */
  min-height: clamp(360px, 55vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.65) 100%);
}

.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.cta__logo {
  height: clamp(64px, 11vw, 130px);
  width: auto;
}

.cta__title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-groove, "Groovezilla", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  font-size: clamp(2.5rem, 7vw, 88px);
}

.cta__text {
  margin: -0.5rem 0 0;
  max-width: 48rem;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-nav, "Inter", sans-serif);
  font-size: 0.95rem;
  color: #0d0d0d;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transition: transform 0.1s ease, opacity 0.2s ease;
}
.cta__btn:hover { opacity: 0.9; }
.cta__btn:active { transform: scale(0.97); }
.cta__btn svg { display: block; }

.cta__btn--secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
}
