:root {
    --col1: #EDEDE9;
    --col2: #D6CCC2;
    --col3: #F5EBE0;
    --col4: #E3D5CA;
    --col5: #D5BDAF;
    --accent: #8E7C68;
    --text: #222;
    --hover-bg: #D5BDAF;
    --focus-outline: #8E7C68;
}

/* General body and font setup */
body {
    background: var(--col1);
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
}

/* Header and logo */
.top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--col2);
    border-bottom: 2px solid var(--col5);
    position: relative;
}
.top-row img {
    height: 60px;
}
.logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--col5);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Navigation links */
.links {
    display: flex;
    gap: 1rem;
}
.links a {
    color: var(--text);
    text-decoration: none;
    background: var(--col4);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.links a:hover,
.links a:focus {
    background: var(--hover-bg);
    color: var(--accent);
    outline: 2px solid var(--focus-outline);
    outline-offset: 2px;
}
.links a.active {
    border-bottom: 2px solid var(--accent);
    font-weight: bold;
}

/* Hamburger menu for mobile */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    margin-left: 1rem;
}

/* Main content area */
main {
    max-width: 800px;
    margin: 3rem auto 2rem auto;
    background: var(--col3);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px *

