/* ========================================
   SHARED CTA + BUTTON STYLES
   ======================================== */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-decoration: none;
}

.btn--orange {
  background-color: var(--color-orange-light);
  color: var(--color-white);
  border-color: transparent;
}

.btn--orange:hover {
  background-color: transparent;
  border-color: rgba(234, 88, 12, 0.7);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: transparent;
}

.btn--outline-white:hover {
  border-color: var(--color-gray-mid);
  background: transparent;
}

/* ---- CTA Section ---- */
.cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--color-navy) 0%, rgba(0, 0, 0, 0.65) 8.77193%, rgba(0, 0, 0, 0.65) 71.9298%, var(--color-black) 100%);
  z-index: 2;
}

.cta__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  max-width: 1100px;
  padding: 0 40px;
}

.cta__heading {
  font-family: var(--font-heading);
  font-size: 79px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--color-white);
}

.cta__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.1;
  color: var(--color-warm-offwhite);
  margin-bottom: 12px;
}

.cta__body--last {
  margin-bottom: 32px;
}

/* ========================================
   CTA + BUTTON RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .cta__heading {
    font-size: 56px;
  }
}

/* ========================================
   CTA + BUTTON RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 12px 28px;
    width: 100%;
    max-width: 280px;
    border-radius: 14px;
  }

  /* On mobile, show the outline by default (no hover state on
     touch devices). The desktop hover treatment becomes the
     default look. White outline for stronger contrast on dark
     hero backgrounds. */
  .btn--outline-white {
    border-color: var(--color-white);
  }

  /* Touch hover/active feedback — fill solid white with black
     text so taps register visually. */
  .btn--outline-white:hover,
  .btn--outline-white:active,
  .btn--outline-white:focus {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
  }

  .cta {
    min-height: 500px;
  }

  .cta__heading {
    font-size: 36px;
  }

  .cta__body {
    font-size: 14px;
  }

  .cta__content {
    padding: 0 20px;
  }
}
