@charset "utf-8";

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Base adjustments for home page */
h2,
h3 {
  font-size: clamp(1.4rem, 5vw, 1.75rem);
}

main>div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

main p:last-child {
  margin-bottom: 0;
}

.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-size: clamp(1.6rem, 6vw, 2.5rem);
    margin: 0 0 clamp(0.6rem, 3vw, 1.5rem) 0;
    font-weight: 200;
  }
  */
.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: 8vh 0 4vh 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.8);
}

/* ========================================
     RETREAT INFO CARDS
     ======================================== */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-card {
  background-color: #FFFFFF99;
  border: 1px solid;
  border-color: #DDE;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: #666;
  transition: background-color 0.2s ease;
}

a.info-card:hover {
  background-color: white;
  border-color: #99F;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-row {
  text-align: left;
  font-size: 1rem;
}

.details-button {
  display: block;
  min-width: 50px;
  max-width: 220px;
  width: 120px;
  background-color: #eaa963;
  color: white;
  font-size: 0.8rem;
  padding: 0.2rem 0.2rem;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

a.info-card:hover .details-button {
  background-color: #cb9358;
}

.details-button.disabled {
  background-color: #999;
  cursor: default;
}

a.info-card:hover .details-button.disabled {
  background-color: #888;
}

.details-button.notify {
  background-color: #6398ea;
  cursor: default;
}

a.info-card:hover .details-button.notify {
  background-color: #5882cb;
}

.toggle-link {
  display: block;
  padding: 1rem 1rem 0 0;
  text-align: right;
  font-weight: 700;
  font-size: 1rem;
}

.more-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ========================================
     IMAGE OVERLAYS
     ======================================== */
.image-overlay-container {
  display: inline-block;
  position: relative;
  vertical-align: top;
  max-width: 350px;
}

.image-overlay-container a {
  position: relative;
  display: block;
  width: 100%;
}

.image-overlay-container img {
  display: block;
  width: 100%;
}

.image-overlay-container p {
  padding: 0 0.5rem 0 0.5rem;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem 0 1rem 0;
  font-size: 1.2rem;
  text-align: center;
  z-index: 10;
  border-radius: 0 0 0.4rem 0.4rem;
}

/* ========================================
     PARALLAX BACKGROUND
     ======================================== */
.parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background-color: #33BED433;
}

.parallax-img {
  max-width: none;
  width: 100%;
  height: auto;
  min-height: 150vh;
  /* Force the image to be at least 150% of viewport height */
  display: block;
  position: absolute;
  top: 50%;
  /* Match what JS will set */
  left: 0;
  transform: translateY(-50%);
  /* Initial centered position */
  object-fit: cover;
  /* This keeps the image proportional and fills the space */
  transition: opacity 0.5s ease-in-out;
}

.parallax-white-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-color: white;
  z-index: 10;
  /* Above the images */
}

/* ========================================
     QUOTE BOX
     ======================================== */
.quote-box-inverse {
  display: block;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  box-shadow: none;
  color: #ffffff;
}

.quote-box-inverse::before {
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  color: #ffffff;
  position: absolute;
  left: 12px;
  top: -20px;
  line-height: 1;
  opacity: 0.9;
  pointer-events: none;
}

.quote-box-inverse blockquote {
  margin: 0;
  padding-left: 0.5rem;
  background: transparent;
  color: inherit;
}

.quote-box-inverse figcaption {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  text-align: right;
  color: inherit;
}