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

body {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    min-height: 100vh;
    background: url("../images/d20.jpg") no-repeat center center fixed;
    background-size: cover;
}

/* Centered content column */
.site-wrapper {
    width: 62%;
    min-height: 100vh;
    margin: 0 auto;
    background: rgba(220, 218, 214, 0.92);
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    padding: 1.25rem 1.5rem 0;
}

.tagline {
    text-align: right;
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.site-header hr,
.footer hr {
    border: none;
    border-top: 2px solid #333;
}

.branding {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    gap: 0.25rem;
}

.logo {
    max-width: 100%;
    height: auto;
}

/* Navbar */
.navbar {
    background: #1a1a1a;
    padding: 0.5rem 1.5rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.nav-link:hover {
    color: #fff;
}

/* Main content */
.content {
    padding: 1.5rem 1.5rem;
    flex: 1;
}

.content-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.content p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: #444;
}

/* Footer */
.footer {
    padding: 0 1.5rem 1.25rem;
}

.footer hr {
    margin-bottom: 0.75rem;
}

.footer p {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .site-wrapper {
        width: 85%;
    }
}

@media (max-width: 600px) {
    .site-wrapper {
        width: 100%;
    }

    .branding {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        height: 80px;
    }

    .site-title {
        font-size: 1.75rem;
    }
}
