/* --- 1. Global Styles & Typography --- */
body {
    background-color: #FEFBF3;
    color: #000000;
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- 2. Header (Maroon & Gold Theme) --- */
header {
    background-color: #800000;
    color: #F4C430;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    letter-spacing: 2px;
}

header p {
    margin-top: 5px;
    font-style: italic;
    color: #FFD700;
}

/* --- 3. Image Display Section --- */
.hero-image-container {
    text-align: center;
    padding: 40px 20px 20px;
    background-color: #f7f3e8;
}

.hero-image-container img {
    max-width: 90%;
    height: auto;
    border: 8px solid #F4C430;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- 4. Centered Devotional Text Wrapper --- */
.devotional-text-wrapper {
    text-align: center;
    padding: 20px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.accent-text {
    font-weight: bold;
    color: #CD853F;
    margin-top: 20px;
}

/* --- 5. Main Content Section (content-box) --- */
.content-box {
    width: 80%;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #FFFFFF;
    border: 1px solid #e0d9c4;
    border-radius: 8px;
}

.content-box h2 {
    color: #800000;
    border-bottom: 2px solid #F4C430;
    padding-bottom: 10px;
}

/* --- 6. Footer --- */
footer {
    background-color: #333333;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}