/* =========================================================
   ONLINE RETREAT — LANDING PAGE ONLY
   Styles for /retreat/online/index.html
   ========================================================= */

/* ---------- HERO / TITLE BLOCK ---------- */

.home-title.retreat-online-hero {
  /* home-title handles global spacing; this just refines layout */
  text-align: center;
}

.retreat-hero-inner {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.retreat-hero-copy {
  text-align: center;
}

.retreat-online-tagline {
  margin: 0.4rem 0 0.8rem;
  font-size: 1.05rem;
  color: rgba(244, 236, 216, 0.85);
}

.retreat-online-intro {
  margin: 0;
  font-size: 0.97rem;
  color: rgba(244, 236, 216, 0.8);
}

/* Convert the prep link into a real button */
.retreat-prep-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;

  border-radius: 0.6rem;
  border: 1px solid rgba(233,196,119,0.35);
  background: rgba(20, 17, 15, 0.85);

  color: #f4ecd8;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.retreat-prep-link:hover,
.retreat-prep-link:focus-visible {
  background: rgba(28, 24, 20, 0.95);
  border-color: rgba(233,196,119,0.55);
}

.retreat-prep-link:hover,
.retreat-prep-link:focus-visible {
  color: #f4ecd8;
  text-decoration: none;
}


/* ---------- OVERVIEW / FLOW SECTION ---------- */

.retreat-how-it-works,
.retreat-overview {
  max-width: 46rem;
  margin: 0 auto 3rem;
}

/* We’re only using retreat-how-it-works now, but these keep things consistent */
.retreat-overview {
  font-size: 0.96rem;
  color: rgba(244, 236, 216, 0.8);
}

.retreat-overview p {
  margin: 0 0 0.9rem;
}

.retreat-how-it-works h2 {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.retreat-how-list {
  margin: 0 0 1.1rem 1.2rem;
  padding: 0;
}

.retreat-how-list li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: rgba(244, 236, 216, 0.82);
}

.retreat-how-note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(244, 236, 216, 0.76);
}


/* ---------- ENTRY GRID & CARDS ---------- */

.retreat-entry-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 48rem) {
  .retreat-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* Base card */
.retreat-entry-card {
  position: relative;
  padding: 1.75rem 1.75rem 1.9rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left,
    rgba(233, 196, 119, 0.08),
    #151013 55%,
    #0c090b 100%);
  border: 1px solid rgba(233, 196, 119, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    border-color 0.2s ease-out;
}

.retreat-entry-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4ecd8;
}

.retreat-entry-sub {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  color: rgba(244, 236, 216, 0.86);
}

.retreat-entry-card p {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: rgba(244, 236, 216, 0.8);
}

.retreat-entry-btn {
  display: inline-block;
  margin-top: 0.75rem;
}

/* Variants */
.retreat-entry-card--modern {
  background: radial-gradient(circle at top left,
    rgba(153, 134, 210, 0.16),
    #151318 55%,
    #0d0b10 100%);
  border-color: rgba(190, 175, 245, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.retreat-entry-card--modern h2 {
  color: #d7c8ff;
}

.retreat-entry-card--classic {
  background: radial-gradient(circle at top left,
    rgba(233, 180, 120, 0.18),
    #1a1410 55%,
    #0d0907 100%);
  border-color: rgba(233, 196, 119, 0.45);
}

.retreat-entry-card--classic h2 {
  color: #f0d7a5;
}

/* Hover state */
.retreat-entry-card--modern:hover,
.retreat-entry-card--modern:focus-within,
.retreat-entry-card--classic:hover,
.retreat-entry-card--classic:focus-within {
  transform: translateY(-3px);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.9),
    0 0 32px rgba(233, 196, 119, 0.18);
  border-color: rgba(233, 196, 119, 0.6);
}

/* ---------- PREP MODAL ---------- */
/* --- Top-left close button for modal --- */
.retreat-prep-close {
  position: absolute;
  top: 0.65rem;
  left: 0.75rem;

  background: none;
  border: none;
  color: rgba(244, 236, 216, 0.70);

  font-size: 1.15rem;   /* smaller than before */
  line-height: 1;
  cursor: pointer;

  padding: 0;
  transition: color 0.2s ease, transform 0.15s ease;
}

.retreat-prep-close:hover,
.retreat-prep-close:focus-visible {
  color: #f4ecd8;
  transform: scale(1.08);
}

.retreat-prep-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.retreat-prep-modal.is-open {
  display: flex;
}

.retreat-prep-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.retreat-prep-dialog {
  position: relative;
  max-width: 40rem;
  max-height: 90vh;
  margin: 0 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 18px;
  background: #151013;
  border: 1px solid rgba(233, 196, 119, 0.5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.retreat-prep-header h2 {
  margin: 0 0 0.9rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retreat-prep-body p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  color: rgba(244, 236, 216, 0.8);
}

.retreat-prep-body ul {
  margin: 0 0 0.8rem 1.2rem;
  padding: 0;
}

.retreat-prep-body li {
  margin-bottom: 0.55rem;
}

.retreat-prep-footer {
  margin-top: 1rem;
  text-align: right;
}/* Sanctuary Glow Button */
.retreat-prep-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.75rem;

  background: rgba(28, 24, 20, 0.88); /* soft charcoal */
  border: 1px solid rgba(233,196,119,0.45); /* gold outline */
  color: #f4ecd8;

  box-shadow:
    0 0 8px rgba(233,196,119,0.25),
    0 0 2px rgba(233,196,119,0.4); /* gentle candle-like glow */

  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.retreat-prep-link:hover,
.retreat-prep-link:focus-visible {
  background: rgba(34, 29, 24, 0.98);

  box-shadow:
    0 0 10px rgba(233,196,119,0.35),
    0 0 4px rgba(233,196,119,0.5); /* brighter hover glow */
}

/* =========================================================
   END OF LANDING STYLES
   ========================================================= */
