/* Resume Styles */
.resume-grid {
    display: grid;
    gap: 2rem;
}

.resume-section {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    color: #475569;
}

.education-item,
.project-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.education-item:last-child,
.project-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.education-header h3 {
    color: #1e293b;
    font-weight: 600;
}

.education-year {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.education-institution {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.education-details,
.project-description {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.education-gpa {
    color: #059669;
    font-weight: 500;
}

.skills-category {
    margin-bottom: 1.5rem;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.project-tech {
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.achievements-list,
.footer-links {
    list-style: none;
}

.achievements-list li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.languages-list {
    display: grid;
    gap: 1rem;
}

.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.language-name {
    font-weight: 500;
    color: #1e293b;
}

.language-level {
    color: #3b82f6;
    font-size: 0.875rem;
}
