/* General */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
}

body{
    font-family: "Poppins", sans-serif;
}

html{
    scroll-behavior: smooth;
}

p{
    color:rgb(85, 85, 85) ;
}

/* transition */
a, .btn{
    transition: all 300ms ease;
}

/* Desktop navigation */
nav, .nav-link{
    display: flex;
}

nav{
    /* display: flex; */
    align-items: center;
    justify-content: space-around;
    height: 17vh;

}

.nav-link{
    list-style: none;
    text-decoration: none;
    font-size: 1.5rem;
    gap: 2rem;
}

a{
    color: black;
    text-decoration: none;
}

a:hover{
    color: grey;
    text-decoration: underline;
    text-decoration-color: rgb(181, 181, 181);
    text-underline-offset: 1rem;
}

.Logo{
    font-size: 2rem;
    cursor: default;
}

/* hamburger-menu */
#hamburger-nav{
    display: none;
}

.hamburger-menu{
    position: relative;
    display: inline-block;
}

.hamburger-icon{
    height: 24px;
    width: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.hamburger-icon span{
    width: 100%;
    height: 2px;
    background-color: black;
    transition:all 0.3 ease-in-out;
}

.menu-links{
    top: 100%;
    right: 0;
    overflow: hidden;
    background-color: white;
    position: absolute;
    width: fit-content;
    transition:all 0.3s ease-in-out;
    max-height: 0;
}

.menu-links a{
    cursor: pointer;
    text-align: center;
    display: block;
    padding: 10px;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition:all 0.3s ease-in-out;

}

.menu-links.open {
    max-height: 300px;
  }
.menu-links li{
    list-style: none;
}

.hamburger-icon.open span:first-child{
    transform: rotate(45deg) translate(10px,5px);
}
.hamburger-icon.open span:nth-child(2){
    opacity: 0;
}
.hamburger-icon.open span:last-child{
    transform: rotate(-45deg) translate(10px,-5px);
}
.hamburger-icon span:first-child{
    transform: none;
}
.hamburger-icon span:first-child{
    opacity: 1;
}
.hamburger-icon span:first-child{
    transform: none;
}

/* section */
section{
    padding-top: 12vh;
    /* height: 96vh; */
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
}

.section-container{
    display: flex;
}

/* profile */
#profile{
    display: flex;
    justify-content: center;
    gap: 5rem;
    /* height: 80vh; */
    position: relative;
}

.section-container-p2{
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.profile-pic{
    display: flex;
    height: 400px;
    width: 400px;
    margin: 0 auto;
}

.profile-text{
    align-self: center;
    text-align: center;
}

.section-container-p1 {
    text-align: center;
    font-weight: 600;
}

.title{
    font-size: 3rem;
    text-align: center;
}

/* social container */
.social-container{
    display: flex;
    justify-content: center;
     column-gap: 2rem;
}

/* Icons */
.icon{
    cursor: pointer;
    height: 2rem;
}

/* button container */
.btn-container{
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.btn{
    font-weight: 600;
    padding: 1rem;
    transition: all 300ms ease;
    width: 8rem;
    border-radius: 2rem;
}

.btn-color-1,.btn-color-2{
    border: 0.1rem solid rgb(53, 53, 53);
}

.btn-color-1:hover,.btn-color-2:hover{
    cursor: pointer;    
}

.btn-color-1,.btn-color-2:hover{
    background: rgb(53,53,53);
    color: white;
}

.btn-color-1:hover{
    background: rgb(0,0,0);
}
.btn-color-2{
    background: none;
}
.btn-color-2:hover{
    background: rgb(255,255,255) 0.1rem solid;
}
.fa-brands{
    font-size: 2rem;
    margin-top: 1rem;
    
}

/* about section */
#about{
    position: relative;
}

.about-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}
/* .about-details-container{
    display: flex;
} */

.about-pic{
    border-radius: 2rem;
    height: 486px;
    width: fit-content;

}

.arrow{
    position: absolute;
    right: -9rem;
    bottom: 2.5rem;
}
.details-container{
    padding: 1.5rem;
    flex: 1;
    background: white;
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    border-color: rgb(163, 163, 163);
    text-align: center;
}

.section-container{
    gap: 4rem;
    /* height: 80%; */
}

.pic-container{
    margin: auto 0;
}

.text-container p{
    text-align: justify;
    font-size: 0.9rem;
}

/* experience */
#Experience{
    position: relative;
}

.experience-sub-title{
    color: rgb(85, 85, 85);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.experience-details-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-container{
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-around;
}

article{
    display: flex;
    /* width: rem; */
    justify-content: space-around;
    gap: 0.5rem;
}

article.icon{
    cursor: default;
}

/* projects */
#Projects{
    position: relative;
}

.color-container{
    background: rgb(250, 250, 250);
    border-color: rgb(163, 163, 163);
}

.project-img{
    border-radius: 2rem;
    width: 19rem;
    height: 19rem;
    margin: 0 auto;
}

.project-title{
    margin: 1rem;
    color: black;
}

.project-btn{
    color: black;
    border-color: rgb(163, 163, 163);
}

/* Contact */
#Contact{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 55vh;
}

.contact-info-upper-container{
    display: flex;
    border: rgb(53,53,53) 0.1rem solid;
    border-radius: 2rem;
    justify-content: center;
    background: rgb(250,250,250);
    border-color: rgb(163, 163, 163);
    margin: 2rem auto;
    padding: 0.5rem;
}

.contact-info-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
}

.contact-info-container p{
    font-size: larger;
}

.contact-icon{
    cursor: default;
}

/* footer */
footer{
    height: 26vh;
    margin: 0 1rem;
}
footer p{
    text-align: center;
}