/* Unique World Holidays — site-wide footer (Step 14 migration).
   Replaces Header Footer Elementor's global footer (post 109) on every
   page. Colors/fonts below are pulled directly from the site's Elementor
   global kit (post 5) so this matches the old footer pixel-for-pixel:
     Dark Blue  #13294B  — headings, disclaimer button, social icon circles
     Off White  #F4F6EF  — bottom bar background, hover states
     White      #FFFFFF  — top section background
     text-black #333333  — body copy
   Headings: Poppins 600/500. Body: Roboto 400. Same as every other
   migrated section on this site (Team, Testimonials, Advantage, ...). */

#uwh-footer {
  --uwh-footer-navy: #13294b;
  --uwh-footer-navy-hover: #203658;
  --uwh-footer-offwhite: #f4f6ef;
  --uwh-footer-text: #333333;
}

/* ---- Top section: logo/tagline/disclaimer + the 3 info columns ---- */
.uwh-footer-top {
  background-color: #ffffff;
  padding: 50px 10px 40px;
  box-shadow: 0 -1px 4px 1px rgba(0, 0, 0, 0.22);
}

.uwh-footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}

.uwh-footer-col {
  min-width: 200px;
}

.uwh-footer-col--brand {
  flex: 1 1 300px;
}

.uwh-footer-col--links {
  flex: 1 1 180px;
}

.uwh-footer-col--contact,
.uwh-footer-col--office {
  flex: 1 1 240px;
}

.uwh-footer-logo {
  display: block;
  max-width: 75%;
  height: auto;
}

/* Shown instead of the logo image until a real logo is uploaded — see
   partials/site-footer.php and the footer_logo field's own instructions
   in functions.php for why this doesn't fall back to any image. */
.uwh-footer-logo-text {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--uwh-footer-navy);
}

.uwh-footer-tagline {
  margin: 10px 0 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--uwh-footer-text);
  max-width: 32em;
}

.uwh-footer-disclaimer-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 17px 30px;
  background-color: var(--uwh-footer-navy);
  color: var(--uwh-footer-offwhite);
  border: none;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.uwh-footer-disclaimer-btn:hover,
.uwh-footer-disclaimer-btn:focus {
  background-color: var(--uwh-footer-navy-hover);
}

.uwh-footer-heading {
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--uwh-footer-navy);
}

.uwh-footer-subheading {
  margin: 10px 0 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--uwh-footer-navy);
}

.uwh-footer-list,
.uwh-footer-menu {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.uwh-footer-list li,
.uwh-footer-menu li {
  margin-bottom: 7px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--uwh-footer-text);
}

.uwh-footer-list a,
.uwh-footer-menu a {
  color: inherit;
  text-decoration: none;
}

.uwh-footer-list a:hover,
.uwh-footer-list a:focus,
.uwh-footer-menu a:hover,
.uwh-footer-menu a:focus {
  color: var(--uwh-footer-navy);
  text-decoration: underline;
}

/* ---- Bottom bar: copyright + social icons ---- */
.uwh-footer-bottom {
  background-color: var(--uwh-footer-offwhite);
  padding: 20px 10px;
}

.uwh-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.uwh-footer-copyright {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--uwh-footer-text);
}

.uwh-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uwh-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: var(--uwh-footer-navy);
  color: var(--uwh-footer-offwhite);
  transition: background-color 0.2s ease;
}

.uwh-footer-social a:hover,
.uwh-footer-social a:focus {
  background-color: var(--uwh-footer-navy-hover);
}

.uwh-footer-social svg {
  width: 14px;
  height: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 782px) {
  .uwh-footer-top {
    padding: 36px 20px 28px;
  }

  .uwh-footer-bottom {
    padding: 18px 20px;
  }

  .uwh-footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}
