/* ============================================
   RESUME.CSS — Resume Page Styles
   ============================================ */

.resume-wrapper {
    padding-top: var(--header-height);
    background-color: var(--bg-color);
    min-height: 100vh;
}

.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.resume-header h1 { font-size: 2.5rem; }

.resume-paper {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-bottom: 4rem;
    transition: background-color 0.3s;
}

.resume-top {
    text-align: center;
    margin-bottom: 2rem;
}

.resume-profile h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.resume-profile .role {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.resume-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.resume-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resume-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.resume-socials a {
    color: var(--text-color);
    font-size: 0.9rem;
}

.resume-socials a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.resume-section h3 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
}

.resume-section h3 i { color: var(--primary-color); }

.resume-item { margin-bottom: 1.5rem; }

.item-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.item-header h4 { font-size: 1.2rem; font-weight: 600; }

.item-header .date,
.item-header .tech {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.company {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.resume-item ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-color);
}

.resume-item ul li { margin-bottom: 0.3rem; }

.resume-section .skills-grid .skill-category { margin-bottom: 1rem; }

.resume-section .skills-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* ---- Back button ---- */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s, gap 0.3s;
    margin-bottom: 1rem;
}

.back-btn:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}