/* =====================================================
   ABOUT OVERLAY — js/about-overlay.css
   ---------------------------------------------------
   Opens when the "Crafted with Devotion 🙏" line at the
   bottom of the homepage is tapped. Card matches the
   info-overlay card visually; close behaves like the
   photo lightbox (close icon below the card, tap
   anywhere outside to close).
   ===================================================== */

#aboutOverlay {
  position: fixed;
  inset: 0;
  z-index: 11000;          /* above bottom nav, like the lightbox */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 12px;

  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

#aboutOverlay.is-open {
  opacity: 1;
  pointer-events: all;
}

#aboutOverlay[hidden] { display: none; }

/* ── Card — same look as info-overlay card ─────────── */
.about-card {
  background: #8888881A;
  -webkit-backdrop-filter: blur(12px) saturate(140%);
          backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-inner-light), var(--shadow-inner-dark);

  border-radius: 20px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  gap: 24px;

  width: 100%;
  max-width: 360px;
  max-height: calc(100dvh - 24px - 12px - 40px - 24px);
  overflow-y: auto;

  /* Subtle entrance — wrapper-level scale + fade */
  transform: scale(0.96);
  transition: transform 200ms ease;
}

#aboutOverlay.is-open .about-card {
  transform: scale(1);
}

/* ── Title ─────────────────────────────────────────── */
.about-title {
  margin: 0;
  font-family: 'Savor', 'Montserrat', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: #DEAC21;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Body paragraphs ───────────────────────────────── */
.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;                 /* space between paragraphs */
  font-family: var(--font-body);
  color: #FFFFFF;
  text-align: center;
}

.about-para {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.about-para strong {
  font-weight: 700;
}

.about-para a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.about-para a:hover {
  color: #DEAC21;
}

/* Final namaste — slightly larger */
.about-namaste {
  margin: 0;
  font-size: 22px;
  line-height: 1;
}

/* ── Close icon (visual cue + tap target) ──────────── */
.about-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 150ms ease, transform 120ms ease;

  pointer-events: auto;
  flex: 0 0 auto;
}
.about-close:hover  { background: rgba(255, 255, 255, 0.18); }
.about-close:active { transform: scale(0.92); }

.about-close svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
}

/* ── Make "Crafted with Devotion" feel tappable ────── */
.crafted-line {
  cursor: pointer;
  transition: color 150ms ease;
}
.crafted-line:hover { color: #BBBBBB; }
.crafted-line:active { opacity: 0.7; }

/* ── Body lock when open ───────────────────────────── */
body.about-overlay-open {
  overflow: hidden;
  touch-action: none;
}
