/* Resume Specific Styles - Warm Earth Tones */

.header-nav {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.header-nav a {
    color: var(--sand-light);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.header-nav a:hover {
    background: rgba(204, 188, 173, 0.15);
    color: var(--sand);
}

.header-nav a.active {
    background: rgba(160, 85, 43, 0.3);
    color: var(--sand);
}

.resume-container {
    background: var(--sand);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--sand-dark);
    overflow: hidden;
}

/* Resume Header */
.resume-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--olive) 50%, var(--charcoal) 100%);
    padding: 48px;
    text-align: center;
    border-bottom: 4px solid var(--rust);
}

.resume-name {
    color: var(--sand);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.resume-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sand-light);
    font-size: 15px;
}

.contact-item .icon {
    font-size: 18px;
}

/* Two Column Layout */
.resume-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

/* Sidebar Styles */
.resume-sidebar {
    background: rgba(144, 126, 104, 0.08);
    padding: 40px 32px;
    border-right: 1px solid var(--sand-dark);
}

.resume-main {
    padding: 40px 48px;
    background: var(--sand);
}

/* Section Styles */
.resume-section {
    margin-bottom: 40px;
}

.resume-section:last-child {
    margin-bottom: 0;
}

.section-title {
    color: var(--rust);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(160, 85, 43, 0.3);
}

/* Highlights */
.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    color: var(--charcoal);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(144, 126, 104, 0.15);
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rust);
    font-weight: bold;
    font-size: 18px;
}

/* Education */
.education-item {
    padding: 20px;
    background: rgba(144, 126, 104, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--rust);
}

.degree {
    color: var(--charcoal);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.minor {
    color: var(--olive);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.school {
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 4px;
}

.year {
    color: var(--rust);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.description {
    color: var(--olive);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* Skills & Certifications */
.skill-category {
    margin-bottom: 28px;
}

.skill-category h4 {
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(160, 85, 43, 0.12) 0%, rgba(160, 85, 43, 0.08) 100%);
    color: var(--charcoal);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(160, 85, 43, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(160, 85, 43, 0.18) 0%, rgba(160, 85, 43, 0.12) 100%);
    transform: translateY(-2px);
    border-color: rgba(160, 85, 43, 0.3);
}

.certification-item,
.clearance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(144, 126, 104, 0.08);
    border-radius: 8px;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.cert-badge,
.clearance-badge {
    font-size: 20px;
}

/* Work History */
.job-item {
    margin-bottom: 40px;
    padding: 28px;
    background: rgba(144, 126, 104, 0.08);
    border-radius: 16px;
    border-left: 4px solid var(--rust);
    transition: all 0.3s ease;
}

.job-item:hover {
    background: rgba(144, 126, 104, 0.12);
    transform: translateX(4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 20px;
}

.job-title {
    color: var(--charcoal);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.company {
    color: var(--olive);
    font-size: 1.1rem;
    font-weight: 600;
}

.job-period {
    color: var(--rust);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    background: rgba(160, 85, 43, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
}

.job-duties {
    list-style: none;
    padding: 0;
}

.job-duties li {
    color: var(--charcoal);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.job-duties li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--rust);
    font-weight: bold;
    font-size: 16px;
}

/* Resume Footer */
.resume-footer {
    padding: 32px 48px;
    background: rgba(144, 126, 104, 0.08);
    border-top: 1px solid var(--sand-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .resume-content {
        grid-template-columns: 1fr;
    }
    
    .resume-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--sand-dark);
    }
}

@media (max-width: 768px) {
    .resume-header {
        padding: 32px 24px;
    }
    
    .resume-name {
        font-size: 2rem;
    }
    
    .resume-contact {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .resume-sidebar,
    .resume-main,
    .resume-footer {
        padding: 24px;
    }
    
    .job-header {
        flex-direction: column;
    }
    
    .job-period {
        align-self: flex-start;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    header,
    .resume-footer {
        display: none;
    }
    
    .resume-container {
        box-shadow: none;
        border: none;
    }
    
    .resume-content {
        grid-template-columns: 300px 1fr;
    }
}
