/* --- Resume Page Specific Styling --- */
.glass-header-bar {
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xl);
    width: 100%; 
    position: relative;
    overflow: hidden;
    isolation: isolate;
}


body.resume-page {
    background-color: var(--color-bg-medium);
}

.resume-container {
    padding: var(--space-xl) 0;
}

/* --- The "Paper" --- */
.resume-paper {
    background-color: var(--color-bg-white);
    width: 1000px;
    height: 1250px;
    margin: 0 auto;
    padding: 3rem;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
}

.resume-header {
    text-align: center;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-lg);
}

.resume-header h1 {
    font-size: 18pt;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0;
}

.resume-header h2 {
    font-size: 11pt;
    font-weight: 500;
    color: var(--color-text-subtle);
    margin: 8px 0 0 0;
}

/* --- Main Two-Column Layout --- */
.resume-body {
    display: flex;
    gap: var(--space-xl);
}

.resume-column-left {
    width: 25%;
    padding-right: var(--space-lg);
    border-right: 2px solid #e0e0e0; 
}

.resume-column-right {
    width: 75%;
}

/* Section Titles */
.resume-section h3 {
    font-size: 10pt;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    padding-top: 10px;
}
.resume-section h4 {
    font-size: 10pt;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.contact-list, .skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 9pt;
    line-height: 1.8;
}

.resume-section p {
    font-size: 9pt;
    line-height: var(--line-height-base);
}
.contact-list a {
    color: var(--color-text-link);
    text-decoration: none;
    font-weight: 500;
}
/* --- Experience Section Styling --- */
.job {
    margin-bottom: var(--space-lg);
}

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

.job h4 {
    font-size: 11pt;
    font-weight: 700;
    margin: 0;
}

.job-company {
    font-size: 10pt;
    font-weight: 500;
    margin: 2px 0 12px 0;
}

.job-meta {
    text-align: right;
    font-size: 10pt;
    font-weight: 500;
    color: var(--color-text-subtle);
    flex-shrink: 0;
    margin-left: 1rem;
}

.job ul {
    padding-left: 1.25rem;
    margin: 0;
    font-size: 10pt;
    line-height: var(--line-height-base);
}

/* --- Action Bar --- */
.action-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
}