/* Brand Colors & Global Styles */
:root {
    --bg-color: #312704;   /* The Dark Olive from your main page */
    --text-color: #dbd4c4; /* The Cream color for text */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styling - Matches your screenshots */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none; /* Fixes the bullet point issue */
    gap: 30px;
    margin: 0;
}

.nav-links a {
    text-decoration: none; /* Removes blue underline */
    color: var(--text-color);
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Page Title - Big Bold Oswald */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    text-transform: uppercase;
    text-align: center;
    margin: 60px 0;
}