/* Unique World Holidays — Thank You page (post 907, /thank-you/).
   Same-to-same replacement for the two Elementor containers that used to
   make up this whole page (container 6f39b2f: background image +
   "page-title" widget + Header Footer Elementor's breadcrumb widget;
   container b041b18/5772292: heading + text-editor + button) — rebuilt
   here in plain PHP/ACF, see partials/thank-you-section.php for the full
   context. Post 907's _elementor_data is left completely untouched.

   Unlike about-hero-section.css, NO overlay is added on the image variant
   here — confirmed via the original container's own stored settings that
   it never had one (About Us's overlay was a deliberate NEW addition for
   that page specifically, not something carried over from a shared
   original). Keeping this section overlay-free matches the original
   Thank You page exactly. */

/* ---- Hero: background + title + breadcrumb ---- */

.uwh-ty-hero {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 40px 20px;
  box-sizing: border-box;
}

.uwh-ty-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.uwh-ty-hero-title {
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.2;
  color: var(--uwh-ty-title-color, #ffffff);
}

.uwh-ty-breadcrumb,
.uwh-ty-breadcrumb .ast-breadcrumbs-wrapper,
.uwh-ty-breadcrumb .ast-breadcrumbs-inner {
  margin: 0;
  padding: 0;
  background: none;
}
.uwh-ty-breadcrumb,
.uwh-ty-breadcrumb .ast-breadcrumbs-inner,
.uwh-ty-breadcrumb .ast-breadcrumbs-inner * {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--uwh-ty-breadcrumb-color, #ffffff), transparent 15%);
}
.uwh-ty-breadcrumb a,
.uwh-ty-breadcrumb .ast-breadcrumbs-inner a {
  color: color-mix(in srgb, var(--uwh-ty-breadcrumb-color, #ffffff), transparent 15%);
  text-decoration: none;
}
.uwh-ty-breadcrumb a:hover,
.uwh-ty-breadcrumb .ast-breadcrumbs-inner a:hover {
  color: var(--uwh-ty-breadcrumb-color, #ffffff);
  text-decoration: underline;
}
.uwh-ty-breadcrumb .ast-breadcrumbs-inner span:last-child,
.uwh-ty-breadcrumb .ast-breadcrumbs-inner .trail-end {
  color: var(--uwh-ty-breadcrumb-color, #ffffff);
}

/* ---- Content card: heading + body text + button ----
   Original container's own background_color (Off White, #F4F6EF) sits on
   the full-width wrapper; the inner boxed content is centered at 1260px,
   generous padding — same numbers as the original (80px desktop). */

.uwh-ty-content {
  width: 100%;
  background: #f4f6ef;
  padding: 60px 20px;
  box-sizing: border-box;
}

.uwh-ty-content-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 20px;
}

.uwh-ty-heading {
  margin: 0 0 20px;
  font-weight: 700;
  text-transform: capitalize;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #13294b;
}

.uwh-ty-body {
  margin: 0 0 10px;
  max-width: 500px;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333333;
}

.uwh-ty-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: #13294b;
  color: #f4f6ef;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 20px;
  padding: 17px 30px;
  box-shadow: 2px 0 6px 0.5px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
}

.uwh-ty-button:hover {
  background: #203658;
  color: #f4f6ef;
}

.uwh-ty-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 782px) {
  .uwh-ty-hero {
    min-height: 220px;
    padding: 32px 20px;
  }
  .uwh-ty-content {
    padding: 40px 20px;
  }
  .uwh-ty-button {
    padding: 13px 22px;
  }
}
