/* Base Styling */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #101010; /* Slightly lighter black for subtle contrast */
    color: #f8f8f8; /* Softer white for a more natural readability */
    line-height: 1.8;
}

h1, h2 {
    font-family: 'Libre Baskerville', serif;
    color: #d4a017; /* Slightly brighter gold for impact */
    text-align: center;
    margin-top: 20px;
}

h1 {
    font-size: 3.7rem; /* Larger for emphasis */
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8); /* Stronger shadow for gravitas */
}

h2 {
    font-size: 2.6rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* Enhanced subtlety for subheadings */
}

pre {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem; /* Larger for emphasis on poetry */
    color: #f8f8f8;
    background-color: #292929; /* Slightly darker for a refined contrast */
    padding: 25px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 900px;
    border: 3px solid #d4a017; /* Brighter gold for honor */
}

p {
    font-size: 1.3rem; /* Slightly larger for readability */
    text-align: justify;
    margin: 20px 0;
}

/* Imagery Styling */
img {
    display: block;
    margin: 30px auto;
    border: 6px solid #a30000; /* Richer, darker red for sacrifice */
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 1); /* Enhanced shadow for dramatic effect */
    max-width: 90%;
    height: auto;
}

/* Links */
a {
    color: #d4a017; /* Brighter gold for emphasis */
    text-decoration: none;
}

a:hover {
    color: #ffffff; /* Pure white for contrast */
    text-decoration: underline;
    font-weight: bold; /* Added emphasis on hover */
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px 0;
    background: #a30000; /* Deeper, more muted red for remembrance */
    color: #f8f8f8;
}

footer a {
    color: #f8f8f8;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #d4a017; /* Gold for dignity */
}

/* Section Divider */
hr {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, #a30000, #d4a017, #a30000); /* Gradient for thematic unity */
    margin: 40px auto;
    max-width: 85%;
}

/* Accessibility Enhancements */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem; /* Adjusted for smaller screens */
    }

    h2 {
        font-size: 2rem;
    }

    pre, p {
        font-size: 1.1rem;
    }
}