/* === Retreats Page Styling === */

/* Hero section with parallax background image */
.hero-retreat {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("/static/images/hero-buddha-pool.jpg") center/cover no-repeat fixed;
  overflow: hidden;
}

/* Subtle gradient overlay for text readability */
.hero-retreat .hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 0;
}

/* Text block positioning */
.hero-retreat .hero-text {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-retreat h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.5px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55), 0 3px 10px rgba(255, 255, 255, 0.2);
  opacity: 0.95;
}

.hero-retreat .lead {
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

/* Call to action buttons container */
.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn {
  display: inline-block;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.hero-cta .btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.hero-retreat .hero-text { position: relative; z-index: 1; padding: 0 20px; }
.hero-retreat h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: .5px; text-shadow: 0 3px 14px rgba(0,0,0,.55), 0 10px 18px rgba(0,0,0,.2); }
.hero-retreat .lead { opacity: .95; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.hero-cta { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display:inline-block; font-weight:700; padding: 10px 20px; border-radius: 4px; text-decoration:none; }
.btn.primary { background:#e97400; color:#fff; }
.btn.primary:hover { background:#d46a00; }
.btn.ghost { border:1px solid #fff; color:#fff; }
.btn.ghost:hover { background:rgba(255,255,255,.08); }

/* Section wrapper */
.section { padding: 64px 16px; }

/* Three-card grid */
.retreat-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.retreat-card {
  background: #ffffff; border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  padding: 22px;
}
.retreat-card h3 { margin: 0 0 10px; color:#1f5a47; }
.retreat-card h3 span { font-weight: 400; opacity: .9; }
.retreat-card ul { margin: 0 0 12px 18px; }
.retreat-card li { margin: 6px 0; }
.price { font-size: 1rem; margin: 10px 0 16px; color:#333; }
.pay input[type="submit"] {
  background:#1f5a47; color:#fff; border:0; border-radius:6px;
  padding:10px 16px; cursor:pointer; font-weight:700;
}
.pay input[type="submit"]:hover { background:#184a3a; }

/* Quick reserve form */
.reserve { text-align: center; }
.reserve h2 { margin: 0 0 10px; }
.reserve-form {
  max-width: 720px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr 1fr auto; gap: 10px;
}
.reserve-form input, .reserve-form select {
  padding: 10px 12px; border:1px solid #ddd; border-radius:6px; font: inherit;
}
.reserve-form .btn { align-self: stretch; display:flex; align-items:center; }

/* Calendly section */
.calendly { max-width: 1100px; margin: 0 auto; }
.calendly h2 { text-align:center; margin-bottom: 14px; color:#1f5a47; }

/* Responsive */
@media (max-width: 960px) {
  .retreat-grid { grid-template-columns: 1fr; }
  .reserve-form { grid-template-columns: 1fr; }
}
/* Archetype Retreat Options – Gold Theme */
.retreat-tier-section.gold-theme {
  background-color: #fffaf2;
  padding: 70px 20px;
  text-align: center;
  border-top: 1px solid #e9e2d2;
}

.retreat-tier-section.gold-theme h2 {
  font-size: 2em;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.retreat-intro {
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.retreat-tier {
  background-color: #ffffff;
  border: 1px solid #e2d8c3;
  border-radius: 12px;
  padding: 40px 30px;
  margin: 40px auto;
  max-width: 760px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.retreat-tier h3 {
  color: #4a4a4a;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.retreat-tier p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.retreat-tier ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 600px;
  text-align: left;
}

.retreat-tier ul li {
  position: relative;
  margin: 8px 0;
  padding-left: 22px;
}

.retreat-tier ul li::before {
  content: "•";
  color: #b29a65;
  position: absolute;
  left: 0;
}

.retreat-btn.gold {
  background-color: #b29a65;
  color: white;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.retreat-btn.gold:hover {
  background-color: #cdb77c;
}

.retreat-closing {
  margin-top: 40px;
  color: #555;
  font-style: italic;
  font-size: 1.1em;
}

/* Price note styling */
.price-note {
  color: #6b6b6b;
  font-size: 0.95em;
  margin-top: 10px;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.5;
}
