/* Reset and base styles for accessibility and consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f5fa; /* Light purple-gray for a calm vibe */
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header and navigation */
header {
    background-color: #4b0082; /* Deep purple for theology */
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 0.5rem;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem;
    transition: background-color 0.3s ease;
}

nav a:hover,
nav a:focus {
    background-color: #2f004f; /* Darker purple */
    border-radius: 0.25rem;
}

nav a[aria-current="page"] {
    background-color: #2f004f;
    border-radius: 0.25rem;
}

/* Main content */
main {
    padding: 2rem 0;
}

section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 1.5rem;
    color: #4b0082;
    margin-bottom: 0.5rem;
}

article {
    margin-bottom: 1.5rem;
}

article h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

article p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 0.5rem;
}

.read-more {
    display: inline-block;
    color: #4b0082;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover,
.read-more:focus {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #e6e0fa; /* Light purple */
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav a {
        display: block;
        padding: 0.75rem;
    }

    section h2 {
        font-size: 1.25rem;
    }

    article h3 {
        font-size: 1.1rem;
    }

    article p {
        font-size: 0.9rem;
    }
}

/* Accessibility enhancements */
@media (prefers-reduced-motion: reduce) {
    nav a,
    .read-more {
        transition: none;
    }
}