/* Resume Page Styles */

/* Resume Header */
.resume-header {
/*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;*/
    background: linear-gradient(30deg, #000100 0%, #203661 100%);
    padding: 120px 0 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.resume-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.resume-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.resume-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.resume-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Resume Container */
.resume-container {
    max-width: 53rem;
    margin: 0 auto;
    padding: 0 20px;
}

/* Summary Section */
.summary-section {
    padding: 80px 0;
    background: white;
}

.summary-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.summary-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
 /*   max-width: 800px;*/
    margin-left: auto;
    margin-right: auto;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.experience-section h2 {
    margin-bottom: 1rem;
    font-weight: 500;
/*    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
    text-align: center;*/
}

/* Experience Cards */
.experience-card {
/*    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/*
.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
*/
.experience-header {
/*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;*/
}
/*
.experience-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}*/

.company {
    font-size: 1.2rem;
    opacity: 0.9;
}

.focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.focus-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
/*
.experience-content {
    padding: 40px;
}
*/
.company-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.achievements {
    margin-bottom: 30px;
}

.achievements h4 {
    font-size: 1.3rem;
    font-weight: 600;
 /*   color: #333;*/
    margin-bottom: 20px;
}

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

.achievements li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.achievements li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.focus-areas-detailed, .feautured-projects-detailed {
    margin-bottom: 30px;
}

.focus-areas-detailed h4, .feautured-projects-detailed h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.focus-tags .focus-tag {
    background: #f0f0f0;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-highlights {
    margin-top: 30px;
}

.project-highlights h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.project-highlight {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.project-highlight h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.project-highlight p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.project-tags .tag {
    background: #ffffff;
    border: 1px solid #dddddd;
    color: #495057;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Navigation Active State */
.nav-link.active {
    opacity: 1;
    font-weight: 500;
}
/*
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
    border-radius: 1px;
}
*/

.feautured-projects-detailed .callout {
    background-color: #f0f0f0;
}
.callout-columns {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.callout-left {
    flex: 1;
}

.callout-right {
    flex: 1; 
    margin: auto 0px
}

.feautured-projects-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.callout-columns h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.callout-columns p {
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resume-title {
        font-size: 2.2rem;
    }
    
    .resume-header {
        padding: 100px 0 60px;
    }
    
    .experience-header {
        padding: 25px;
    }
    
    .experience-content {
        padding: 30px 25px;
    }
    
    .experience-header h3 {
        font-size: 1.5rem;
    }
    
    .focus-areas {
        gap: 6px;
    }
    
    .focus-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .achievements h4,
    .focus-areas-detailed h4,
    .project-highlights h4 {
        font-size: 1.2rem;
    }
    
    .project-highlight {
        padding: 20px;
    }
    .callout-columns {
        flex-direction: column;
    }

}

@media (max-width: 480px) {
    .resume-title {
        font-size: 1.8rem;
    }
    
    .summary-section h2,
    .experience-section h2 {
        font-size: 2rem;
    }
    
    .experience-header {
        padding: 20px;
    }
    
    .experience-content {
        padding: 25px 20px;
    }
    
    .focus-areas {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-tags {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Print Styles */
@media print {
    .nav {
        display: none;
    }
    
    .resume-header {
        background: white;
        color: #333;
        padding: 40px 0;
    }
    
    .experience-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e9ecef;
    }
    
    .experience-header {
        background: #f8f9fa;
        color: #333;
    }
    
    .focus-tag {
        background: #e9ecef;
        color: #333;
    }
}
