/* Common styles for all pages */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background: #FFF8E7;
}

/* Header */
.site-header {
    background: #8B4513;
    color: #FFF;
    text-align: center;
    padding: 1rem;
}

.site-header img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.site-header h1 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 0.3rem;
}

.site-header p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #FFE4B5;
}

/* Navigation */
nav {
    background: #D2691E;
    padding: 0.75rem;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

nav a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #8B4513;
    color: #FFF;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
}

.site-footer a {
    color: #FFE4B5;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}
