@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

*{
    margin: 0%;
    padding: 0%;
    font-weight: 400;
    font-size: 14px;
}

body{
    background:linear-gradient(135deg, #E3E3E3 0%,#9a9a9a 100%);
    display: grid;
    place-items: center;
    font-family: 'Roboto', sans-serif;
    opacity: 1;
    padding: 20px 0;
}

.none{
    display: none;
}

.resume{
    margin-top: 20px;
    width: 800px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

#print{
    background-color: #fff;
    padding: 40px 50px;
    min-height: 1120px;
}

/* Header Section */
.head{
    margin-bottom: 20px;
}

.name-section{
    text-align: center;
    margin-bottom: 15px;
}

.name{
    font-size: 42px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.name.last-name{
    color: rgb(80, 80, 80);
}

.contact-info{
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.contact-info i{
    font-size: 12px;
    color: #555;
    margin-right: 4px;
}

.contact-info .content{
    font-weight: 500;
    color: #333;
}

.contact-info .separator{
    color: #999;
    margin: 0 4px;
}

.line{
    height: 1px;
    background-color: rgb(87, 87, 87);
    margin: 20px 0;
    margin-bottom: 25px;
}

/* Main Body - Single Column */
.mainbody{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section{
    margin-bottom: 20px;
}

.title{
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #000;
    border-bottom: 2px solid #333;
    padding-bottom: 4px;
}

.section-content{
    margin-left: 0;
}

/* Summary Section */
.summary-text{
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* Education Section */
.education-item{
    margin-bottom: 15px;
}

.education-main{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.education-degree{
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

.education-date{
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.education-details{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 2px;
}

.education-institution{
    font-size: 13px;
    color: #555;
}

.education-grade{
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* Technical Skills Section */
.skills-container{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skill-category{
    margin-bottom: 6px;
}

.skill-category-title{
    font-weight: 700;
    color: #000;
    margin-right: 8px;
}

.skill-items{
    color: #333;
}

/* Experience Section */
.experience-item{
    margin-bottom: 20px;
}

.experience-header{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.experience-title{
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

.experience-date{
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.experience-company{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.company-name{
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.company-location{
    font-size: 13px;
    color: #666;
}

.experience-bullets{
    margin-left: 20px;
    margin-bottom: 8px;
}

.experience-bullets li{
    margin-bottom: 5px;
    line-height: 1.5;
    color: #333;
}

/* Projects Section */
.project-item{
    margin-bottom: 20px;
}

.project-header{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.project-title{
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

.project-date{
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.project-bullets{
    margin-left: 20px;
    margin-bottom: 8px;
}

.project-bullets li{
    margin-bottom: 5px;
    line-height: 1.5;
    color: #333;
}

/* Leadership Section */
.leadership-item{
    margin-bottom: 20px;
}

.leadership-header{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.leadership-title{
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

.leadership-date{
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.leadership-org{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.org-name{
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.org-location{
    font-size: 13px;
    color: #666;
}

.leadership-bullets{
    margin-left: 20px;
    margin-bottom: 8px;
}

.leadership-bullets li{
    margin-bottom: 5px;
    line-height: 1.5;
    color: #333;
}

/* Certifications Section */
.certification-item{
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.certification-name{
    font-weight: 600;
    font-size: 14px;
    color: #333;
    flex: 1;
}

.certification-date{
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Buttons */
button{
    margin: 8px 5px 8px 0;
    font-size: 12px;
    padding: 5px 10px;
}

.btn-sm{
    font-size: 11px;
    padding: 3px 8px;
}

.input-checkbox{
    margin-right: 10px;
}

/* Navigation Buttons */
.navbtn{
    position: fixed;
    top: 40%;
    left: 4%;
    transform: translate(-40%,-4%);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border:#fff 2px solid;
    transition: 300ms ease-in-out;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    background-color: #fff;
    cursor: pointer;
    z-index: 1000;
}

.navbtn:nth-child(2){
    top: 50%;
    left: 4.4%;
    transform: translate(-50%,-4.4%);
}

.navbtn:nth-child(3){
    top: 60%;
    left: 4.8%;
    transform: translate(-60%,-4.8%);
}

.navbtn:hover{
    background-color: #333;
    color: #fff;
    border: #333 2px solid;
    height: 65px;
    width: 65px;
}

/* Responsive adjustments */
@media print {
    .navbtn{
        display: none;
    }
    
    button{
        display: none;
    }
    
    .input-checkbox{
        display: none;
    }
}
