/* Minimalist Resume Design System */
:root {
    --bg: #111111;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --link-color: #f0f0f0;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --max-width: 680px;
    --spacing-unit: 1.5rem;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-stack);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-primary);
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

p,
li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

a {
    color: var(--link-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #ddd;
    transition: text-decoration-color 0.2s;
}

a:hover {
    text-decoration-color: var(--link-color);
}

/* Header Layout */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-top: 0;
}

.brand {
    font-weight: 800;
    font-size: 2rem;
    color: var(--text-primary);
}

.header-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

/* Sections */
.job-item,
.project-item {
    margin-bottom: 2rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.job-title {
    font-weight: 600;
    color: var(--text-primary);
}

.job-date {
    font-size: 0.85rem;
    color: #888;
    font-variant-numeric: tabular-nums;
}

/* Tags similar to reference site */
.tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Reset list styles */
ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .container {
        margin: 2rem auto;
    }
}