:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #00ff41; /* Classic Terminal Green */
    --link-color: #00ff41;
    --border-color: #333;
    --font-stack: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Console", monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    font-size: 16px;
}

/* Container for standardizing width */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navigation */
nav {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: baseline;
}

nav .brand {
    font-weight: bold;
    font-size: 1.2em;
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav li {
    display: inline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color);
    font-weight: normal;
    letter-spacing: 1px;
}

h1 {
    border-bottom: 2px dashed var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2 {
    margin-top: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--link-color);
    transition: all 0.2s ease;
}

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

/* Lists */
ul {
    list-style-type: square;
}

/* Responsive */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .job-header {
        flex-direction: column;
    }
}

/* Print Styles - Resume Optimization */
@media print {
    body {
        background-color: #fff;
        color: #000;
        font-family: "Times New Roman", Times, serif; /* Traditional for print */
        font-size: 11pt;
        text-transform: none; /* Do not lowercase print view */
    }
    
    .container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    nav, footer {
        display: none;
    }

    a {
        text-decoration: none;
        color: #000;
        border-bottom: none;
    }

    h1, h2, h3 {
        color: #000;
        border-color: #000;
    }

    h1 {
        text-align: center;
        border-bottom: none;
        font-size: 24pt;
        margin-bottom: 10px;
    }
}
