﻿/* RESUME PAGE — specific overrides and timeline components */

.resume-page-section {
    padding: 6rem 2rem 0 2rem;
    min-height: 85vh;
}

.resume-header {
    max-width: 1200px;
    margin: 0 auto 1rem auto;
    text-align: center;
}

.resume-description {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.55;
    max-width: 680px;
    margin: .25rem auto 0;
    line-height: 1.75;
}

.resume-section { padding: 1rem 0; }

/* Override card style for the skill list */
.resume-page-section .project-card {
    aspect-ratio: auto;
    padding: 2rem;
    justify-content: flex-start;
}

.skill-group + .skill-group {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.skill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.skill-row:last-child { border-bottom: none; }

/* Skill Levels */
.skill-level {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    padding: 0.18rem 0.6rem; border-radius: 20px;
}
.skill-level.expert       { background: rgba(255, 80, 0, 0.18); color: var(--accent); border: 1px solid rgba(255, 80, 0, 0.35); }
.skill-level.advanced     { background: rgba(255, 80, 0, 0.10); color: var(--accent); border: 1px solid rgba(255, 80, 0, 0.22); }
.skill-level.intermediate { background: rgba(218, 218, 218, 0.07); color: var(--text); border: 1px solid rgba(218, 218, 218, 0.12); }
.skill-level.basic        { background: transparent; color: var(--text); opacity: 0.45; border: 1px solid var(--border); }

/* Education Timeline */
.education-timeline {
    position: relative;
    max-width: 860px;
    margin: 3rem auto 0;
    padding-left: 1.5rem;
}
.education-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 24px;
    width: 2px;
    background: var(--border);
}

.timeline-entry {
    position: relative;
    padding-bottom: 3rem;
}
.timeline-entry::before {
    content: '';
    position: absolute;
    left: -1.8rem;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg);
    box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.18);
    z-index: 2;
}

.timeline-date {
    font-family: var(--font-playfair), serif;
    font-size: 0.85rem;          /* date-tag */
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.timeline-role {
    font-family: var(--font-playfair), serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Style for details (the <ul> list) if not already defined */
.timeline-details {
    list-style: none;
    margin-top: 0.5rem;
}

.timeline-details li {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2rem;
}

.timeline-details li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .resume-page-section { padding: 5rem 1.5rem 0; }
    .education-timeline { padding-left: 1.2rem; }
    .timeline-entry::before { left: -1.58rem; }
}