/* ================================
   RESUME.CSS - Styles for Resume Page
   ================================ */

/* -------------------------------
   Resume Header
--------------------------------- */
.resume-header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background-color: #f4f4f4;
}

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

.resume-header p {
    font-size: 1.1rem;
    color: #555;
}

/* -------------------------------
   Resume Sections
--------------------------------- */
.resume-section {
    padding: 2rem 1rem;
    /* max-width: 900px; */
    /* margin: 0 auto; */
}

.resume-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0077cc;
    display: inline-block;
    padding-bottom: 0.25rem;
}

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

.resume-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.resume-item .sub-title {
    font-size: 1rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.resume-item p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* -------------------------------
   Download Button
--------------------------------- */
.resume-download {
    text-align: center;
    margin: 3rem 0;
}

.resume-download a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #0077cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.resume-download a:hover {
    background-color: #005fa3;
}

/* -------------------------------
   Responsive
--------------------------------- */
@media (max-width: 768px) {
    .resume-header h1 {
        font-size: 2rem;
    }

    .resume-section {
        padding: 1rem;
    }

    .resume-section h2 {
        font-size: 1.5rem;
    }
}
