/* ===== Heaven Page Styles ===== */

:root {
    --celestial-1: #2c3e7a;
    --celestial-2: #4a6fa5;
    --celestial-3: #7ba7d4;
    --celestial-4: #a8c8f0;
    --celestial-glow: rgba(100, 160, 230, 0.15);
    --gold: #c9a227;
    --gold-2: #f4d35e;
    --text-primary: #f0e6d3;
    --text-body: #d4c9b8;
    --text-muted: #a09888;
    --bg-card: rgba(255,255,255,0.03);
    --border-celestial: rgba(120, 180, 240, 0.18);
    --border-gold: rgba(244, 211, 94, 0.15);
}

/* --- Hero --- */
.heaven-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(100,160,230,0.1) 0%, rgba(100,160,230,0.04) 35%, transparent 70%);
    pointer-events: none;
    animation: heavenPulse 8s ease-in-out infinite;
}

@keyframes heavenPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.04); }
}

@keyframes celestialShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes goldShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes starFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 1; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-60vh) scale(0.5); }
}

/* --- Stats --- */
.heaven-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.heaven-stat { text-align: center; }

.heaven-stat-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #7ba7d4 0%, #a8c8f0 40%, #e0f0ff 60%, #a8c8f0 80%, #7ba7d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: celestialShimmer 5s linear infinite;
    line-height: 1;
}

.heaven-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* --- Dividers --- */
.celestial-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--celestial-3) 40%, var(--celestial-4) 50%, var(--celestial-3) 60%, transparent 100%);
    opacity: 0.3;
}

.gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-2) 50%, var(--gold) 60%, transparent 100%);
    opacity: 0.25;
}

/* --- Sections --- */
.heaven-section { max-width: 860px; margin: 0 auto; padding: 80px 24px; }
.heaven-section-wide { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }

.section-label-celestial {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--celestial-3);
    margin-bottom: 12px;
    display: block;
}

.section-label-gold {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.heaven-h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.07em;
    color: var(--text-primary);
    margin: 0 0 24px;
    line-height: 1.35;
}

.heaven-prose {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
    color: var(--text-body);
    line-height: 1.95;
    margin: 0 0 20px;
}
.heaven-prose:last-child { margin-bottom: 0; }

/* --- Opening Card --- */
.heaven-opening-card {
    background: rgba(100,160,230,0.04);
    border: 1px solid var(--border-celestial);
    border-radius: 20px;
    padding: 52px 48px;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(100,160,230,0.06), inset 0 1px 0 rgba(255,255,255,0.05);
}

.heaven-opening-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at top, rgba(100,160,230,0.07) 0%, transparent 65%);
    pointer-events: none;
}

@media (max-width: 600px) {
    .heaven-opening-card { padding: 32px 24px; }
}

/* --- Core Realities Grid --- */
.heaven-realities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.heaven-reality-card {
    background: var(--bg-card);
    border: 1px solid var(--border-celestial);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.heaven-reality-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.heaven-reality-card:hover {
    border-color: rgba(120, 180, 240, 0.4);
    background: rgba(100,160,230,0.04);
}

.heaven-reality-num {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--celestial-3);
    min-width: 28px;
    line-height: 1.4;
}

.heaven-reality-content strong {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: block;
    margin-bottom: 6px;
}

.heaven-reality-content p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* --- Biblical Descriptions --- */
.bible-categories {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bible-category {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.bible-category.open { border-color: var(--border-celestial); }

.bible-cat-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.bible-cat-title {
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.bible-cat-chevron {
    color: var(--celestial-3);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bible-category.open .bible-cat-chevron { transform: rotate(180deg); }

.bible-cat-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.bible-category.open .bible-cat-body { max-height: 500px; }

.bible-cat-inner {
    padding: 0 28px 28px;
    border-top: 1px solid rgba(120,180,240,0.12);
}

.bible-cat-inner p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin: 16px 0 0;
}

.bible-scripture {
    font-style: italic;
    color: var(--gold);
}

/* --- Misconceptions --- */
.heaven-misconception-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.heaven-misconception-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.heaven-misconception-item.open { border-color: var(--border-celestial); }

.heaven-misconception-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.heaven-misconception-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--celestial-3);
    margin-bottom: 4px;
}

.heaven-misconception-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.4;
}

.heaven-misconception-chevron {
    color: var(--celestial-3);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.heaven-misconception-item.open .heaven-misconception-chevron { transform: rotate(180deg); }

.heaven-misconception-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.heaven-misconception-item.open .heaven-misconception-body { max-height: 600px; }

.heaven-misconception-inner {
    padding: 0 28px 28px;
    border-top: 1px solid rgba(120,180,240,0.12);
}

.heaven-correction-label {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 20px 0 10px;
    display: block;
}

.heaven-misconception-inner p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin: 0 0 12px;
}
.heaven-misconception-inner p:last-child { margin-bottom: 0; }

/* --- Scripture Block --- */
.scripture-block {
    background: rgba(201,162,39,0.05);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 32px 36px;
    margin: 40px 0;
    text-align: center;
}

.scripture-block blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text-body);
    line-height: 1.9;
    margin: 0 0 12px;
}

.scripture-ref {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
}

/* --- Pull Quote --- */
.heaven-pull-quote {
    border-left: 3px solid var(--celestial-3);
    padding: 20px 28px;
    margin: 32px 0;
}

.heaven-pull-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
}

/* --- NDE Section --- */
.nde-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px;
    position: relative;
}

.nde-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0a0a0c;
    background: var(--celestial-3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- CTA --- */
.heaven-cta {
    background: linear-gradient(135deg, rgba(201,162,39,0.07) 0%, rgba(100,160,230,0.05) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heaven-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0a0a0c;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 24px rgba(201,162,39,0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,162,39,0.45);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 640px) {
    .heaven-cta { padding: 44px 24px; }
    .heaven-realities-grid { grid-template-columns: 1fr; }
    .bible-cat-header, .heaven-misconception-header { padding: 18px 20px; }
    .bible-cat-inner, .heaven-misconception-inner { padding: 0 20px 20px; }
}
