/* --- VERSION 1.6.2 MASTER STYLES --- */

/* 1. Global Setup */
body {
    background-image: url('/assets/background.png');
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 1.25em; 
    line-height: 1.6;
    color: #2c1e14;
    margin: 0;
    padding: 0;
}

/* 2. Banner - Centered and Proportional to Parchment */
.banner { 
    display: block;
    width: 100%; 
    max-width: 900px; /* Matches the parchment width exactly */
    height: auto; /* Keeps it in proportion */
    margin: 40px auto 0 auto; /* Centered with top spacing */
}

/* 3. Main Container (The Parchment) */
.container {
    max-width: 900px;
    margin: 0 auto 40px auto; /* Centered, touching the bottom of the banner */
    background-image: url('/assets/scroll.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 60px 80px;
    text-align: center;
}

/* 4. Navigation with Blue Glow */
nav.site-nav { 
    margin-bottom: 40px; 
    border-bottom: 1px solid #5d4037; 
    padding-bottom: 15px; 
}
nav.site-nav a { 
    text-decoration: none; 
    color: #5d4037; 
    font-weight: bold; 
    margin: 0 20px; 
    text-transform: uppercase; 
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
nav.site-nav a:hover { 
    color: #5d4037;
    text-shadow: 0 0 8px #82caff, 0 0 15px #82caff; 
}

/* 5. Dividers and Footer - Proportional */
.divider, .footer-img { 
    width: 70%; 
    max-width: 550px; 
    margin: 40px auto; 
    display: block; 
}

/* 6. Typography */
h1, h2 { font-family: 'Almendra', serif; color: #3e2723; margin-bottom: 20px; }
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }