/*
 * Resume-specific styling for resume.html
 * Note: This file complements assets/css/style.css, which handles the header and footer.
 */

.resume-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* --- Section Headings --- */
.resume-header {
    border-bottom: 2px solid #1da192; /* The primary teal color */
    padding-bottom: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.resume-header h1 {
    font-size: 2.5em;
    color: #1a3c5a; /* The primary dark blue color */
    margin-bottom: 5px;
}

.resume-header p {
    font-size: 1.1em;
    color: #555;
    margin: 5px 0;
}

.resume-section {
    margin-bottom: 40px;
}

.resume-section h2 {
    font-size: 1.5em;
    color: #1a3c5a;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* --- Job Entries (Timeline Look) --- */
.job-entry {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid #e0f7fa; /* Light blue line to indicate history */
}

.job-entry h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.job-entry p.tenure {
    font-style: italic;
    color: #777;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.job-entry ul {
    list-style: disc;
    margin: 10px 0 0 20px;
    padding: 0;
    line-height: 1.6;
    color: #444;
}

/* --- Skills List (Tags) --- */
.skill-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-list li {
    background-color: #e0f7fa;
    color: #1da192;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
}

/* --- Download Button --- */
.download-btn-wrapper {
    text-align: right;
    margin-bottom: 30px;
}

.download-button {
    display: inline-block;
    background-color: #1da192;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #12897e;
}

/* --- Responsiveness --- */
@media (max-width: 600px) {
    .resume-container {
        margin: 20px 10px;
        padding: 20px;
    }
    .resume-header h1 {
        font-size: 2em;
    }
    .resume-header p {
        font-size: 0.9em;
    }
    .job-entry {
        padding-left: 10px;
    }
    .skill-list {
        gap: 5px;
    }
    .skill-list li {
        padding: 4px 8px;
        font-size: 0.8em;
    }
}