/* Resume Page Styles */
.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 6rem 0 1rem;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: var(--accent-color);
}

.resume-actions {
    display: flex;
    gap: 1rem;
}

.print-btn,
.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: transparent;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.print-btn:hover,
.download-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Resume Content */
.resume-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.personal-info {
    text-align: left;
    margin-bottom: 2rem;
}

.personal-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item .icon {
    color: var(--text-secondary);
}

.contact-item:hover .icon {
    color: var(--accent-color);
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Resume Sections */
.resume-section {
    margin-bottom: 2rem;
}

.resume-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.resume-section h2 .icon {
    color: var(--text-secondary);
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.recent-wins {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.wins-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.wins-list {
    list-style: none;
    padding: 0;
}

.wins-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.wins-list li .icon {
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Experience Section */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-item {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.experience-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.title {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.achievements {
    list-style: none;
    padding: 0;
}

.achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.achievements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Education Section */
.education-list {
    list-style: none;
    padding: 0;
}

.education-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.school {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

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

/* Skills Section */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: var(--accent-color);
    color: white;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .nav,
    .resume-header {
        display: none;
    }

    .resume-content {
        max-width: none;
        padding: 0;
    }

    body {
        background: white;
    }

    .experience-item,
    .education-item,
    .recent-wins {
        background: none;
        border: 1px solid #ddd;
    }

    .skill-tag {
        border: 1px solid #ddd;
    }

    .skill-tag:hover {
        background: none;
        color: var(--text-color);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .resume-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .resume-actions {
        width: 100%;
        justify-content: space-between;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .experience-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .period {
        font-size: 0.85rem;
    }
} 