/* --- Base Styles & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray text for dark mode */
    background-color: #0a0a0a; /* Very dark black background */
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #e50914; /* Striking crimson red */
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1em;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

hr {
    border: 0;
    height: 1px;
    background: #333333; /* Dark gray divider */
    margin: 3rem 0;
}

/* --- Layout Containers --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* --- Header / Hero Section --- */
.hero {
    background: linear-gradient(135deg, #120000, #4a0000); /* Deep dark red gradient */
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid #e50914; /* Red bottom border */
}

.hero h1 {
    color: #ffffff; /* Keep main title white to pop against dark red */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero .intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* --- Religious Figures Grid --- */
.figures-section {
    padding-top: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: #1a1a1a; /* Dark gray card background */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e50914; /* Red accent top */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(229, 9, 20, 0.2); /* Faint red glow on hover */
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: #e50914;
}

.card .subtitle {
    display: block;
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 1rem;
    font-style: italic;
}

.card p {
    font-size: 0.95rem;
    color: #cccccc;
}

/* --- Analysis Section --- */
.analysis-section p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 1.1rem;
}

.analysis-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
}

.analysis-list li {
    background: #1a1a1a;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
    border-left: 4px solid #e50914; /* Red accent left */
}

.analysis-list li strong {
    color: #e50914;
    font-family: 'Merriweather', serif;
}

/* --- Angels Section --- */
.split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-box {
    flex: 1;
    min-width: 300px;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.content-box h3 {
    color: #e50914;
}

.rational-box {
    background: #240000; /* Very dark tinted red background */
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e50914;
}

.rational-box h3 {
    margin-bottom: 1rem;
    color: #ff4d4d; /* Slightly brighter red for contrast on dark red bg */
}

/* --- Footer --- */
footer {
    text-align: center;
    background: #050505;
    color: #777777;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #333333;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}
