/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    font-family: 'EB Garamond', serif;
    line-height: 1.8;
    color: #333;
    font-size: 1.4rem;
    background: url('images/bg3.jpg') no-repeat top center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Add a subtle overlay to improve text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.72);
    z-index: 0;
}

header {
    padding: 2rem 0;
    text-align: center;
}

h1 {
    font-family: 'IM Fell English', serif;
    color: #2c3e50;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    z-index: 1;
    letter-spacing: 0.02em;
}

h2 {
    font-family: 'IM Fell English', serif;
    color: #34495e;
    font-size: 3.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

main {
    padding: 2rem 0;
}

section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: rgba(249, 249, 249, 0.85);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

p {
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    color: #666;
}

/* Decorative Dividers */
.divider {
    border: none;
    margin: 2rem auto;
    max-width: 600px;
}

.divider.sketched {
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 C30,2 70,18 100,10' stroke='%23666' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    opacity: 0.5;
}

.divider.celtic {
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,15 C10,5 20,25 30,15 C40,5 50,25 60,15 C70,5 80,25 90,15 C95,10 100,20 100,15' stroke='%23666' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    opacity: 0.6;
}

.meditations {
    font-style: italic;
    text-align: center;
    color: #555;
}

.poem {
    text-align: center;
    white-space: pre-line;
    line-height: 2.2;
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 2rem auto;
    max-width: 600px;
    font-style: italic;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

/* Add ordered list styling */
ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #2c3e50;
}

ol li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 1.5rem;
    }

    .poem {
        font-size: 1.3rem;
        line-height: 2;
        padding: 0 1rem;
    }
} 