/* Resume-specific styles */

.resume-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 60px;
    color: white;
}

.resume-header {
    max-width: 1000px;
    margin: 0 auto;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-image-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.profile-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basic-info h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.basic-info .title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.basic-info .location {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.resume-content {
    padding: 60px 0;
}

.resume-content section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.resume-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 2rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

/* Executive Summary */
.executive-summary p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.key-strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.strength-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.strength-item strong {
    display: block;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.strength-item span {
    color: #666;
    font-size: 0.95rem;
}

/* Metrics Dashboard */
.metrics-grid-resume {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.metric-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Professional Experience */
.job-entry {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.job-entry:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

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

.job-title-company h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.company {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stage-badge {
    font-size: 0.7rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Additional Experience Section */
.additional-experience {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.additional-experience h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 2rem;
}

.additional-job {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.additional-job h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.additional-role {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.8rem;
}

.additional-job p {
    color: #555;
    line-height: 1.6;
}

.additional-summary {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e9ecef;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.additional-summary p {
    color: #666;
    font-style: italic;
    margin: 0;
}

.job-duration {
    font-size: 0.95rem;
    color: #888;
    font-weight: 500;
    flex-shrink: 0;
}

.job-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.highlight-metric {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
}

.highlight-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.highlight-desc {
    font-size: 0.85rem;
    color: #666;
}

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

.job-achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.job-achievements li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Core Competencies */
.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.competency-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #667eea;
}

.competency-category h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.competency-category ul {
    list-style: none;
    padding: 0;
}

.competency-category li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.competency-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Education */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.education-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.education-item .school {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.education-item .year {
    font-size: 0.95rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .basic-info h1 {
        font-size: 2.2rem;
    }
    
    .job-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-highlights {
        justify-content: center;
    }
    
    .metrics-grid-resume {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
    }
}

.additional-job .badge-container {
    margin: 0.5rem 0;
}

.additional-job .badge-container .industry-badge,
.additional-job .badge-container .stage-badge,
.additional-job .badge-container .strategy-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
}