/* ======================================
    RESUME PAGE STYLES
========================================*/

.resume-section {
    background: var(--bg);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 80vh;
}

.resume-section h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.resume-section p {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.resume-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resume-section a:hover {
    color: darken(var(--accent), 10%);
}

