/* style.css */
:root {
    --bg-color: rgb(26, 26, 27); 
    --text-primary: rgb(248, 250, 252);
    --text-secondary: rgb(203, 213, 225);
    --metadata-text: rgb(180, 190, 200); 
    --divider: rgb(51, 65, 85);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 25px;
}

header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--divider);
    padding-bottom: 25px;
}

h1 {
    font-family: 'PT Serif', serif;
    font-size: 34px;
    margin: 0;
    letter-spacing: -0.5px;
    color: rgb(255, 255, 255);
}

.subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-line {
    font-size: 13px;
    color: var(--metadata-text);
    font-family: 'Inter', sans-serif;
}

h2 {
    font-family: 'PT Serif', serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
}

h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--divider);
    margin-left: 15px;
}





.summary {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.skills-section {
    font-size: 14px;
    color: var(--text-secondary);
}

.skills-section strong {
    color: rgb(255, 255, 255);
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 5px;
}

.job-block {
    margin-bottom: 30px;
}

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

.company {
    font-weight: 600;
    font-size: 17px;
    color: rgb(255, 255, 255);
}

.date {
    font-size: 13px;
    font-weight: 500;
    color: var(--metadata-text);
}

.role {
    font-family: 'PT Serif', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}

.bullet-point {
    display: flex;
    margin-bottom: 5px;
    font-size: 14.5px;
    padding-left: 5px;
}

.bullet {
    margin-right: 12px;
    color: var(--metadata-text);
}

.content {
    color: var(--text-secondary);
}

.content strong {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.additional-item {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 15px;
    border-left: 2px solid var(--divider);
}

/* Education Styles */
.edu-degree {
    font-weight: 600; 
    color: rgb(255, 255, 255);
}

.edu-school {
    color: var(--text-secondary); 
    font-size: 14px;
}

@media print {
    body { 
        background: rgb(255, 255, 255) !important; 
        color: rgb(0, 0, 0) !important; 
        padding: 20px; 
        max-width: 100% !important;
    }
    :root { 
        --text-primary: rgb(0, 0, 0); 
        --text-secondary: rgb(34, 34, 34); 
        --divider: rgb(221, 221, 221); 
    }
    h1, h2, .company, .content strong { color: rgb(0, 0, 0) !important; }
}

/* Portable line-filler class */
.line-header {
    display: flex;
    align-items: center;
    width: 100%; /* Ensures it spans the full container */
}

.line-header::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--divider);
    margin-left: 15px;
}