/* =========================================================================
   THEME: HEAVEN (SKY & SUNSHINE) 
   For pages like Psalm 91 and John 3:16
========================================================================= */

/* =========================================================================
   THEME: HEAVEN (SKY & SUNSHINE) 
   For pages like Psalm 91 and John 3:16
========================================================================= */

body.theme-heaven {
    /* Base fallback */
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 50%, #fde047 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #1e293b;
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Specific Page Backgrounds */
body.theme-heaven.bg-psalm91 {
    background-image: url('images/bigstock-Road-In-The-Forest-64857316.jpg');
}

body.theme-heaven.bg-john316 {
    background-image: url('images/bigstock-Blue-world-map-189436714.jpg');
}

/* Ensure horizontal navigation matches main site but visible on light BG */
body.theme-heaven .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

body.theme-heaven .logo-text {
    color: #0ea5e9;
    text-shadow: none;
    letter-spacing: 2px;
}

body.theme-heaven .logo-text span {
    color: #eab308;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
}

body.theme-heaven .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

body.theme-heaven .nav-links a {
    color: #475569;
    font-weight: 600;
}

body.theme-heaven .nav-links a:hover {
    color: #0ea5e9;
}

body.theme-heaven .heaven-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 100px rgba(253, 224, 71, 0.3);
    max-width: 800px;
    margin: 60px auto;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

body.theme-heaven .heaven-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

body.theme-heaven .heaven-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #0284c7;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

body.theme-heaven .heaven-subtitle {
    font-style: italic;
    color: #64748b;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

body.theme-heaven .heaven-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    position: relative;
    z-index: 1;
}

body.theme-heaven .heaven-content p {
    margin-bottom: 20px;
}

body.theme-heaven .heaven-alert {
    background: rgba(240, 253, 250, 0.8);
    border-left: 4px solid #14b8a6;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
}

body.theme-heaven .prayer-box {
    background: linear-gradient(to right, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.9));
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
}

body.theme-heaven .prayer-box em {
    color: #0369a1;
    font-size: 1.2rem;
    display: block;
    margin-top: 15px;
}

body.theme-heaven .site-footer {
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: auto;
}

body.theme-heaven .footer-link {
    color: #475569;
}

body.theme-heaven .footer-link:hover {
    color: #0ea5e9;
}