/* Resume Page Styles */
.resume-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
}

.resume-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--bs-warning);
}

.resume-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e2130;
    margin-bottom: 0.5rem;
}

.resume-contact {
    font-size: 1.1rem;
    color: #6c757d;
}

.resume-contact a {
    color: var(--bs-warning);
    text-decoration: none;
}

.resume-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.resume-section {
    margin-bottom: 2.5rem;
}

.resume-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e2130;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.resume-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-warning), #ffc107);
    border-radius: 2px;
}

/* Work Experience Styles */
.work-experience {
    list-style: none;
    padding: 0;
}

.work-item {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--bs-warning);
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.work-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e2130;
    margin-bottom: 0.25rem;
}

.work-company {
    font-size: 1.1rem;
    color: var(--bs-warning);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.work-location {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.work-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 1rem;
}

.work-responsibilities {
    margin: 0;
    padding-left: 1.5rem;
}

.work-responsibilities li {
    margin-bottom: 0.5rem;
    color: #4f5464;
    line-height: 1.6;
}

.work-responsibilities li::marker {
    color: var(--bs-warning);
}

/* Education Styles */
.education-item {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #6c757d;
}

.education-degree {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e2130;
    margin-bottom: 0.25rem;
}

.education-school {
    font-size: 1.1rem;
    color: var(--bs-warning);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.education-details {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Projects Styles */
.projects-list {
    list-style: none;
    padding: 0;
}

.project-item {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #28a745;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e2130;
    margin-bottom: 0.5rem;
}

.project-description {
    color: #4f5464;
    line-height: 1.6;
    margin: 0;
}

/* Skills Styles */
.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.skill-category {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.skill-category strong {
    color: var(--bs-warning);
    font-weight: 600;
}

.skill-category li {
    color: #4f5464;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resume-container {
        padding: 1rem;
    }
    
    .resume-name {
        font-size: 2rem;
    }
    
    .work-item,
    .education-item,
    .project-item,
    .skill-category {
        padding: 1rem;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support */
[data-bs-theme="dark"] .resume-name,
[data-bs-theme="dark"] .resume-section-title {
    color: #f8f8f2;
}

[data-bs-theme="dark"] .work-item,
[data-bs-theme="dark"] .education-item,
[data-bs-theme="dark"] .project-item,
[data-bs-theme="dark"] .skill-category {
    background: rgba(68, 71, 90, 0.5);
    color: #f8f8f2;
}

[data-bs-theme="dark"] .work-responsibilities li,
[data-bs-theme="dark"] .project-description,
[data-bs-theme="dark"] .skill-category li {
    color: #f8f8f2;
}
