﻿/* Resume page */
.resume-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1140px;
    max-height: 2412px;
    background-color: white;
}

    .resume-page h1 {
        color: var(--theme-primary);
        margin-top: -10px;
        margin-bottom: 0px;
        font-weight: 900;
        letter-spacing: 2.5px;
        font-size: 40px;
    }

    .resume-page h3 {
        color: var(--theme-body-text);
        font-weight: 200;
        font-size: 24px;
    }

    .resume-page h4 {
        color: var(--theme-primary);
        text-transform: capitalize;
        font-weight: 600;
        font-size: 24px;
    }

    .resume-page h5 {
        color: var(--theme-body-text);
        font-size: 16px;
    }

    .resume-page .header::before {
        height: 30px;
    }


    .resume-page p {
        color: var(--theme-body-text);
        font-size: 14px;
    }

    .resume-page .bi {
        color: var(--theme-primary);
        font-weight: 700;
        font-size: 16px;
    }

.resume-header {
    width: 100%;
}

    .resume-header li {
        font-size: 12px;
        margin-bottom: 5px;
        list-style-type: none;
    }

.resume-content {
    display: grid;
    grid-template-columns: 75% 25%;
    column-gap: 20px;
    align-items: start;
    width: 100%;
    padding: 40px;
    padding-bottom: 0px; /* See resume-summary */
}

.resume-left {
    padding-right: 20px;
    border-right: 3px solid #f0f0f0;
}

/* Summary Section (Two-Column Layout) */
.resume-summary {
    display: flex;
    align-items: center; /* Aligns logo and text vertically */
    justify-content: space-between; /* Ensures logo is left and text is right */
    text-align: left;
    padding: 30px 50px;
    width: 100%;
    padding-bottom: 0px;
}

/* Logo (Left Column) */
.resume-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: url("../images/logo.jpg");
    background-size: cover;
    background-position: 100% 60%; /* <-- this is what you want */
    margin-top: -15px;
    margin-right: 20px;
    flex-shrink: 0;
}


/* Summary Text (Right Column) */
.resume-summary p {
    flex: 1;
    font-size: 14px;
    color: var(--theme-body-text);
}

.item {
    margin-bottom: 40px;
}

    .item li {
        list-style-type: disc;
        font-size: 14px;
    }

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    font-weight: bold;
    margin: 0;
}

.job-dates {
    font-size: 14px;
    color: var(--theme-muted);
    font-weight: 400;
}

.job-location {
    margin: 5px 0 15px;
    font-size: 14px;
    color: var(--theme-body-text);
    font-weight: 400;
}

.skills {
}

    .skills h5 {
        font-size: 18px;
        font-weight: bold;
    }

    .skills p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .skills i {
        font-size: 12px;
        margin: 0;
    }

.social p {
    font-size: 16px;
}

.social {
    color: var(--theme-primary);
    font-size: 40px;
}

@media print {
    body * {
        visibility: hidden;
    }

    .resume-page, #references, .resume-page *, #references * {
        visibility: visible;
    }

    .resume-page, #references {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}
