.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 120vh;
  /* Extra height to prevent jumping */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.bg-image.active {
  opacity: 1;
}

.bg-image-1 {
  background-image: url('/images/retreats-hero-bg2.webp');
}

.bg-image-2 {
  background-image: url('/images/retreats-hero-bg1.webp');
}

.section-header {
  margin-top: 50vh;
  margin-bottom: 0;
  padding: 1rem 0 1rem 0;
  text-align: center;
  background-color: #ffffff;
}

.section-header .container {
  overflow: hidden;
}

.section-header h2 {
  font-family: 'Southam', "Raleway", sans-serif;
  font-size: clamp(32px, 12vw, 80px);
  font-weight: 400;
}

.section-header-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.section-header-overlay h2 {
  color: white;
}

.section-header-first {
  margin-top: -2rem;
  padding-top: 4rem;
}

.section-content {
  margin: 0;
  padding: 6vh 0 6vh 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.8);
}

.cute-heading-wrapper {
  display: flex;
  gap: 11px;
  margin: 2rem 0;
}

.icon-calendar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  align-self: center;
  /* Center icon within the wrapper */
  background-color: #33BED4;
  border-radius: 8px;
  background-size: 28px 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/images/icon-calendar.png');
}

.cute-heading {
  margin: 0;
  padding: 0;
  font-weight: 200;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  line-height: 1;
}

.heading-subtitle {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
}