/* ═══════════════════════════════════════════════════
   NOVENAS PAGE — novenas.css
   Same dark/light alternating pattern as all other pages.
═══════════════════════════════════════════════════ */

/* ── HERO ── */
.nov-hero {
  min-height: 60vh;
  display: grid; place-items: center; text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden; background: var(--navy);
}
.nov-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(42,60,120,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 78%, rgba(123,29,29,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 78% 12%, rgba(184,150,62,0.12) 0%, transparent 40%);
  z-index: 0;
}

.nov-hero-content { position: relative; z-index: 2; max-width: 720px; }

.nov-hero-content h1 {
  font-family: 'Cinzel', serif; font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400; color: var(--white); letter-spacing: 0.05em;
  line-height: 1.1; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}

.nov-hero-content .btn-primary { opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }

/* ── INTRO ── light section ── */
.nov-intro-section { padding: 5rem 2rem; background: var(--ivory); }
.nov-intro-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 769px) { .nov-intro-grid { grid-template-columns: 3fr 2fr; gap: 4rem; } }
.nov-intro-section p { font-size: 1.05rem; color: var(--text-soft); line-height: 1.75; }

/* Index card */
.nov-index-card { background: var(--navy); padding: 2rem; border-top: 3px solid var(--gold); }
.nov-index-card h3 {
  font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.25rem; font-weight: 400;
}
.nov-index-groups { display: flex; flex-direction: column; gap: 1.1rem; }
.nov-index-group { padding-bottom: 1.1rem; border-bottom: 1px solid rgba(184,150,62,0.15); }
.nov-index-group:last-child { border-bottom: none; padding-bottom: 0; }
.nov-index-label {
  font-family: 'Lato', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.5rem;
}
.nov-index-group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.nov-index-group a {
  font-family: 'EB Garamond', Georgia, serif; font-size: 1rem;
  color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s;
}
.nov-index-group a:hover { color: var(--gold-light); }

/* ── NOVENA GUIDE ── dark via .prayers-section ── */
.nov-guide-section { padding: 5rem 2rem; }

/* Filter tabs */
.nov-filter-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid rgba(184,150,62,0.15);
  margin-bottom: 3rem; overflow-x: auto;
}
.nov-filter-btn {
  font-family: 'Lato', sans-serif; font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  padding: 0.75rem 1.2rem; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  background: transparent; cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.nov-filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.nov-filter-btn:hover:not(.active) { color: rgba(255,255,255,0.75); }

/* Novena list */
.nov-list { display: flex; flex-direction: column; gap: 1.5rem; }

/* Individual entry */
.nov-entry {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,150,62,0.15);
  border-left: 4px solid var(--gold);
}
.nov-entry.nov-entry-header {
  padding: 1.6rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  cursor: pointer;
}
.nov-entry-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.nov-entry-category {
  font-family: 'Lato', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.nov-entry-title {
  font-family: 'Cinzel', serif; font-size: 1.1rem;
  color: var(--white); font-weight: 400; letter-spacing: 0.04em; line-height: 1.3;
}
.nov-entry-meta-line {
  font-family: 'EB Garamond', Georgia, serif; font-size: 0.9rem;
  font-style: italic; color: rgba(255,255,255,0.4); margin-top: 0.1rem;
}
.nov-entry-toggle {
  width: 30px; height: 30px; border: 1px solid rgba(184,150,62,0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold); font-size: 1.1rem; transition: transform 0.3s;
}
.nov-entry.open .nov-entry-toggle { transform: rotate(45deg); }

/* Collapsible body */
.nov-entry-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s;
  padding: 0 2rem;
}
.nov-entry.open .nov-entry-body { max-height: 6000px; padding: 0 2rem 2rem; }

/* Two-column layout */
.nov-body-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  border-top: 1px solid rgba(184,150,62,0.12); padding-top: 1.5rem;
}
@media (min-width: 769px) { .nov-body-grid { grid-template-columns: 1.3fr 1fr; gap: 3rem; } }

/* Prayer text */
.nov-prayer-label {
  font-family: 'Lato', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1rem;
}
.nov-prayer-text {
  font-family: 'EB Garamond', Georgia, serif; font-size: 1rem;
  font-style: italic; color: rgba(255,255,255,0.78); line-height: 1.9;
}
.nov-prayer-text .prayer-response {
  font-weight: 600; font-style: normal; color: var(--gold-pale);
}
.nov-prayer-text .prayer-heading {
  font-style: normal; color: rgba(255,255,255,0.5); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Lato', sans-serif;
  display: block; margin: 1.1rem 0 0.4rem;
}
.nov-prayer-text .prayer-note {
  font-style: normal; font-size: 0.9rem; color: rgba(255,255,255,0.5);
  display: block; margin-bottom: 1rem; line-height: 1.65; font-family: 'Lato', sans-serif;
  padding: 0.75rem 1rem; border-left: 2px solid rgba(184,150,62,0.3);
  background: rgba(184,150,62,0.04);
}

/* Info sidebar */
.nov-info-block { display: flex; flex-direction: column; gap: 1.25rem; }
.nov-info-card { background: rgba(255,255,255,0.03); border-top: 2px solid rgba(184,150,62,0.3); padding: 1.25rem; }
.nov-info-label {
  font-family: 'Lato', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 0.5rem;
}
.nov-info-card p {
  font-family: 'EB Garamond', Georgia, serif; font-size: 0.98rem;
  color: rgba(255,255,255,0.68); line-height: 1.72; margin: 0;
}
.nov-meta-note {
  font-family: 'Lato', sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.38);
  line-height: 1.6; padding: 0.85rem 1rem;
  border: 1px solid rgba(184,150,62,0.15); border-left: 2px solid rgba(184,150,62,0.4);
}
