/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: "Georgia", serif;
    background: radial-gradient(circle at 50% 20%, #2b0003, #0f0001);
    color: #ffeaea;
    line-height: 1.85;
    overflow-x: hidden;
    position: relative;
}

/* Spiritual background overlay */
.spiritual-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

/* Container */
.container {
    max-width: 820px;
    margin: 80px auto;
    padding: 0 24px;
}

/* Headings */
h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffd7a6, #ffb37a, #ffd7a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 200, 140, 0.6);
    margin-bottom: 10px;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

h2 {
    font-size: 1.35rem;
    font-weight: 300;
    color: #ffddb3;
    margin-bottom: 50px;
}

h3 {
    font-size: 1.5rem;
    margin: 50px 0 18px;
    color: #ffddc2;
    text-shadow: 0 0 15px rgba(255, 200, 140, 0.4);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

/* Glow pulse animation */
@keyframes glowPulse {
    0% { text-shadow: 0 0 15px rgba(255, 180, 120, 0.4); }
    50% { text-shadow: 0 0 35px rgba(255, 210, 150, 0.6); }
    100% { text-shadow: 0 0 15px rgba(255, 180, 120, 0.4); }
}

/* Paragraphs */
p {
    margin-bottom: 24px;
    color: #ffe6e6;
}

/* Images with aura glow */
.image-block {
    text-align: center;
    margin: 65px 0;
}

.image-block img {
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 
        0 0 35px rgba(255, 180, 120, 0.4),
        0 0 70px rgba(255, 120, 80, 0.45);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-block img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(255, 200, 140, 0.6), 0 0 90px rgba(255, 120, 80, 0.5);
}

.image-caption {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #ffd7a6;
    font-style: italic;
}

/* Highlighted text */
.highlight {
    padding-left: 18px;
    border-left: 3px solid rgba(255, 180, 120, 0.7);
    font-style: italic;
    color: #ffe1c3;
    text-shadow: 0 0 20px rgba(255, 200, 150, 0.4);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Questions */
.questions {
    margin: 30px 0 40px 32px;
    list-style-type: "✦  ";
}

.questions li {
    margin-bottom: 10px;
    color: #ffe6d9;
}

/* Quote */
blockquote {
    margin: 45px 0;
    padding: 24px 32px;
    background: rgba(100, 0, 20, 0.25);
    border-left: 4px solid rgba(255, 180, 120, 0.85);
    font-style: italic;
    color: #fff0e0;
    box-shadow: 0 0 50px rgba(255, 180, 120, 0.35);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

blockquote:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 70px rgba(255, 200, 150, 0.45);
}

/* Closing reflections */
.closing {
    font-style: italic;
    color: #fff2e0;
    text-shadow: 0 0 20px rgba(255, 200, 140, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
    .container {
        margin: 55px auto;
    }
}
