/* Mechanize Minimalist - Smooth & Right-Aligned */
:root {
    --bg-color: #ffffff;
    --text-main: #1a1a1a;
    --dim-text: #666666;
    --border-color: #000000;
}

body {
    /* Monospace gives it that 'code documentation' feel */
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    line-height: 1.6;
    margin: 0;
    padding: 40px;
    background: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header bar removed, layout is now a clean horizontal spread */
header {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between; /* Pushes title left, nav right */
    align-items: baseline;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

nav a {
    color: var(--text-main);
    margin-left: 25px; /* Spacing between right-aligned links */
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

nav a:hover {
    border-bottom: 1px solid var(--border-color);
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 1.2rem; /* Sized down to match a clean 'site title' look */
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.1rem;
    margin-top: 2rem;
    text-transform: uppercase;
    color: var(--dim-text);
}

/* Standardized 'System' Button */
.btn {
    display: inline-block;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 5px 15px;
    text-decoration: none;
    font-size: 0.85rem;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

.btn:hover {
    background: var(--border-color);
    color: #fff;
}

.project-card {
    border-bottom: 1px solid #eeeeee;
    padding: 1.5rem 0;
}

.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    margin: 10px 0;
}

.links-list a {
    color: var(--text-main);
    text-decoration: underline;
}

.links-list a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}