/* Resume Page Styles */
.resume-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.dark-mode .resume-container {
    color: #ddd;
}

.light-mode .resume-container {
    color: #333;
}

/* Resume Header */
.resume-header {
    text-align: center;
    margin-bottom: 20px;
}

.resume-header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.divider {
    border: none;
    border-top: 1px solid #666;
    margin: 10px 0;
}

.light-mode .divider {
    border-top: 1px solid #ccc;
}

/* Resume Sections */
.resume-section {
    margin-bottom: 20px;
}

.resume-section h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #666;
    padding-bottom: 5px;
}

.light-mode .resume-section h2 {
    border-bottom: 1px solid #ccc;
}

/* Skills Section */
.skills-item {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.skill-category {
    font-weight: bold;
}

/* Experience Section */
.experience-item, .project-item, .education-item {
    margin-bottom: 15px;
}

.job-header, .project-header, .education-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.job-title-company h3, .project-title h3, .education-title h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.job-role, .project-subtitle {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.project-subtitle {
    font-weight: normal;
    color: #888;
}

.job-duration, .project-duration, .education-duration {
    text-align: right;
    font-size: 0.9rem;
}

.job-details, .project-details, .achievements-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 5px;
    font-size: 0.95rem;
}

.job-details li, .project-details li, .achievements-list li {
    margin-bottom: 5px;
}

/* Education Section */
.education-title p {
    font-style: italic;
    font-size: 0.9rem;
}

/* Languages Section */
.resume-section p {
    font-size: 0.95rem;
}

/* Download Button */
.resume-actions {
    margin: 30px 0;
    text-align: center;
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #3b82f6;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resume-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.resume-btn i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-header, .project-header, .education-header {
        flex-direction: column;
    }
    
    .job-duration, .project-duration, .education-duration {
        text-align: left;
        margin-top: 5px;
    }
}
