* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif;
    background: #f4f0e8 url('../images/parchment.jpg') repeat;
    color: #2c2c2c;
    line-height: 1.7;
    padding-bottom: 50px;
}

nav {
    background: url('../images/nav-wood.jpg') center/cover;
    border-bottom: 8px solid #3a2f1f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-content a {
    color: #f4e9d8;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    padding: 8px 16px;
    transition: all 0.3s;
}

.nav-content a:hover {
    color: #ffd700;
    text-shadow: 0 0 8px #ffd700;
}

/* Hero */
header {
    position: relative;
    height: 520px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
                url('../images/hero-monktux.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    font-style: italic;
}

/* Parchment Scrolls */
.scroll {
    max-width: 720px;
    margin: 40px auto;
    padding: 50px 60px;
    background: url('../images/parchment-scroll.png') center/contain no-repeat;
    background-size: 100% 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 280px;
}
