/* Styles for the dedicated resume page */

body {
    background-color: #ffffff; /* A clean white background for the resume */
}

.resume-main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
}

.resume-section h2 {
    margin-bottom: 3rem;
    text-align: center;
}

/* Reusing and adapting styles from styles.css */
.resume-content h3 {
    text-align: left;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.resume-experience {
    display: grid;
    gap: 2rem;
}

.job-entry, .education-entry {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-color);
    border-radius: 0 5px 5px 0;
}

.job-entry h4, .education-entry h4 {
    margin: 0 0 1rem 0;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem 1rem;
}

.job-title {
    font-weight: 700;
    color: var(--text-color);
}

.job-location {
    font-style: italic;
    color: #6b7280;
}

.job-dates {
    font-weight: 500;
    color: var(--primary-color);
    flex-shrink: 0;
}

.job-entry p {
    font-size: 1rem;
    line-height: 1.7;
}

.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin-top: 1rem;
}

.skills-list li {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
/* Style for active navigation link */
.nav-menu a.active-link {
    color: var(--accent-color);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}