/* ========================================
   Resume Styles - Liquid Glass
   ======================================== */

.resume-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

/* Resume Header */
.resume-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.resume-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.resume-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.resume-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--light-text);
}

.resume-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.resume-contact a:hover {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Resume Sections */
.resume-section {
    margin-bottom: 1.5rem;
}

.resume-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    text-align: left;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.resume-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Qualifications List */
.qualifications-list {
    list-style: none;
    padding: 0;
}

.qualifications-list li {
    padding: 0.4rem 0 0.4rem 2rem;
    color: var(--text-color);
    position: relative;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 0.3rem;
}

.qualifications-list li:before {
    content: "✓";
    position: absolute;
    left: -1rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Job Entry */
.job-entry {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.job-entry:last-child {
    border-bottom: none;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.job-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.1rem;
}

.job-date {
    color: var(--light-text);
    font-size: 0.9rem;
    white-space: nowrap;
}

.job-company {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0.1rem 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.job-description {
    color: var(--light-text);
    margin: 0.25rem 0 0.5rem 0;
    font-style: italic;
}

.job-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-highlights li {
    padding: 0.2rem 0 0.2rem 1.5rem;
    color: var(--light-text);
    position: relative;
    font-size: 0.95rem;
}

.job-highlights li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
}

/* Education Entry */
.education-entry {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.education-entry:last-child {
    border-bottom: none;
}

.edu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.1rem;
}

.edu-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
}

.edu-date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.edu-institution {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0.1rem 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.edu-certificate {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0.1rem 0;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-block {
    padding: 1rem;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 0.375rem;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary-color);
}

.skill-block h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.skill-block p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Currently Learning Section */
.learning-section {
    background: rgba(0, 212, 255, 0.08);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.learning-block {
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0.375rem;
    border: 2px dashed rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.learning-block:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.learning-block h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.learning-block p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Resume Download */
.resume-download {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.resume-download p {
    margin: 0.5rem 0;
    color: var(--light-text);
}

.download-hint {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 1rem;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .resume-download,
    .resume-download p {
        display: none;
    }

    .resume-container {
        padding: 0;
        box-shadow: none;
        border: none;
    }

    body {
        background: white;
    }

    .resume-section,
    .job-entry,
    .education-entry {
        page-break-inside: avoid;
    }

    .resume-header {
        border-bottom: 1px solid #333;
    }

    a {
        color: #000;
        text-decoration: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .resume-container {
        padding: 2rem 1rem;
    }

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

    .resume-contact {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-date {
        margin-top: 0.25rem;
    }

    .edu-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .edu-date {
        margin-top: 0.25rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

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