/* Resume-specific styles */

/* Resume Header */
.resume-header {
    position: relative;
    margin-top: 80px; /* Add margin to separate from navbar */
    overflow: hidden;
}

.resume-banner {
    background: linear-gradient(135deg, #F4A261, #E76F51);
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Debug styles to ensure visibility */
    border: 2px solid red;
    min-height: 100px;
}

.resume-scroll-text {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
    /* Debug styles */
    background-color: rgba(255, 0, 0, 0.3);
    padding: 10px;
}

.resume-text {
    font-family: 'Swear Display', serif;
    font-size: 60px;
    font-weight: 400;
    color: white;
    opacity: 0.9;
    margin: 0 40px;
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.resume-hero-image {
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.resume-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Professional Profile */
.professional-profile {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.profile-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-text p {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Work Experience */
.work-experience {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.experience-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.job {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 40px;
}

.job:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.job-title {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.company {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.job-date,
.job-location {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.company-description {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

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

.job-responsibilities li {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.job-responsibilities li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: 700;
}

/* Languages */
.languages {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.languages-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.language {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.language-name {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.language-level {
    font-family: 'Neue Haas Grotesk', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* Responsive Design for Resume */
@media (max-width: 768px) {
    .resume-header {
        margin-top: 60px;
    }
    
    .resume-banner {
        padding: 30px 0;
    }
    
    .resume-text {
        font-size: 40px;
        margin: 0 20px;
    }
    
    .resume-hero-image {
        height: 70vh;
    }
    
    .profile-content,
    .experience-content,
    .languages-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .languages-list {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .resume-header {
        margin-top: 50px;
    }
    
    .resume-text {
        font-size: 30px;
        margin: 0 15px;
    }
    
    .resume-hero-image {
        height: 60vh;
    }
    
    .job-responsibilities li {
        font-size: 14px;
    }
}
