body{
    font-family: Arial, sans-serif;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #f5f0ea;
}
.container {
    display: flex;
    min-height: 100vh;
    height: auto;
    /* border: 1px solid black; */

}
.resume{
    width: 50%;
    /* height: 100vh; */
    /* border: 1px solid black; */
}
.photo{
    width: 50%;
    height: 100vh;
    position: fixed;
    /* display: flex; */
    right: 0;
    background-color: rgb(142, 166, 155);
    justify-items: center;
}
.items{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}
.nav{
    width: 50%;
    height: 60px;
    top: 0; 
}
.list a{
    margin-left: 30px;
    text-decoration: none;
    color: black;
}
.list a:hover{
    color: darkgray;
}
.content{
/* border: 1px solid black; */
justify-items: center;
}
.name, .contact{
    margin-top: 50px;
    /* border: 1px solid black; */
    
}
.scroll-btn {
    /* text-align: center; */
    margin-top: 40px;
    padding-right: 30%;


}
.scroll-btn button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}
.scroll-btn button:hover {
    background-color: white;
    color: black
}
img{
    width: 400px;
    height: 400px;
}
.image {
    margin-top: 100px;
}
.about{
    /* border: 1px solid black; */
    margin-top: 300px;
    height: 300px;
    width: 70%;
    margin-right: 50px;
    /* background: #f9f9f9; */
    /* border-radius: 5px; */
    /* box-shadow: 0 14px 12px rgba(0, 0, 0, 0.1); */
    font-family: "Open Sans", sans-serif;
    line-height: 1.8;
    color: #333
    /* overflow: hidden; */
}
.name h1{
    font-size: 40px;
    font-weight: bold;
    font-family: "Bodoni MT", "Bodoni 72", Didot, "Bodoni Moda", "Libre Bodoni", serif;
}
.skills{
    /* border: 1px solid black; */
    margin-top: 200px;
    height: 200px;
    width: 70%;
    margin-right: 50px;
}
.downloadbtn {
    margin-top: 20px;
    margin-left: 70%;
}
.downloadbtn button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.downloadbtn button:hover {
    background-color:white;
    color: black
}
.heading p{
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
}
.about b{
    font-size: 22px;
    letter-spacing: 0.4em;
    font-family: "Cormorant Garamond", serif;
}
.skills b{
    font-size: 22px;
    letter-spacing: 0.4em;
    font-family: "Cormorant Garamond", serif;
}
.work{
    margin-top: 500px;
    height: 200px;
    width: 70%;
    margin-right: 50px;
}
#work-experience {
    font-size: 22px;
    letter-spacing: 0.4em;
    font-family: "Cormorant Garamond", serif;
}
.workexpr {
    margin-top: 20px;

}
.workexpr > div {
    margin-bottom: 20px;
    /* border: 1px solid black; */
}
.name h3 {
    font-family: 'Lato', sans-serif;
    font-size: 25px;
}

.education {
    margin-top: 500px;
    height: 200px;
    width: 70%;
    margin-right: 50px;
}
#edu {
    font-size: 22px;
    letter-spacing: 0.4em;
    font-family: "Cormorant Garamond", serif
}
.itemsinit {
    margin-top: 20px;
}
.itemsinit > div {
    margin-bottom: 20px;
}
li{
    font-family: 'Open Sans', sans-serif;
    line-height: 1.2;
    color: #444;
}
#skills-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
    

}
#skills-list li {
    margin-bottom: 20px;
    /* font-size: 18px; */
}
.contact a {
    text-decoration: none;
    letter-spacing: 0.04em;
    font-size: 15px;

}
.lkdnicon {
    display: inline;
    vertical-align: middle;
    margin-right: 5px;

}
.lkdnicon img {
    width: 20px;
    height: 20px;
}
.giticon {
    display: inline;
    vertical-align: middle;
    margin-right: 5px;
}
.giticon img {
    height: 20px;
    width: 20px;
}
.resume {
    padding-bottom: 0px;
}
.footer{
    margin-top: 500px;
    margin-bottom: 0;
    padding-left: 50px;
}

/* --- Mobile View --- */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* stack vertically */
    }

    /* --- PHOTO SECTION --- */
    .photo {
        width: 100%;
        position: relative; /* no fixed positioning */
        height: auto;
        background-color: rgb(142, 166, 155);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 0;
    }

    .photo img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 50%; /* optional for a nice rounded look */
        margin-bottom: 20px;
    }

    .downloadbtn {
        margin: 10px 0 20px 0;
    }

    /* --- RESUME SECTION --- */
    .resume {
        width: 100%;
        padding: 20px 25px; /* give breathing room like desktop */
    }

    .about, .skills, .work, .education {
        width: 100%;
        margin: 80px 0; /* spacing between sections */
    }

    .name h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .name h3 {
        font-size: 20px;
    }

    /* --- Footer --- */
    .footer {
        text-align: center;
        margin-top: 100px;
        padding: 10px;
    }
}
