/* General */

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


* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
}
html {
    scroll-behavior: smooth;
}
p, ul li {
    color: rgb(85, 85, 85);
}

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

/* desktop navigation */
nav, .nav-links {
    display: flex;
}
nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}
.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.3rem;
}
a {
    color: #000;
    text-decoration: none;
    text-decoration-color: white;
}
a:hover {
    color: #fb6f92;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
}
.logo {
    font-size: 2rem;
    color: #fb6f92;
    font-weight: bolder;
}
.logo:hover {
    cursor: default;
}
/* hamburger menu */
#hamburger-nav {
    display: none;
}
.hamburger-menu {
    position: relative;
    display: inline-block;
}
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}
.hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: #fb6f92;
    transition: all 0.3 ease-in-out;
}
.menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
    height: 36vh;
    opacity: 0.9;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 9999;
}
.menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}
.menu-links a:hover {
    color: #fb6f92;
}
.menu-links li {
    list-style: none;
}
.menu-links.open {
    max-height: 300px;
}
.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: 4vh;
    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;
}
.profilepic{
    border-radius: 20%;
    animation: imgg 3s ease-in-out infinite;
    animation-delay: 2s;
    position: relative;
    z-index: 1;
}
@keyframes imgg {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-22px);
    }
    100%{
        transform: translateY(0);
    }
    
}
.section_pic-container {
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
}
.section_text {
    align-self: center;
    text-align: center;
}
.section_text p {
    font-weight: 600;
}
.section_text_p1 {
    text-align: center;
}
.section_text_p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.title {
    font-size: 3rem;
}
#socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

/* icons */
.icon {
    cursor: pointer;
    height: 2rem;
    transition: 0.5s;
}
.icon:hover{
    transform: translateY(-10px);
}

/* buttons */
.btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 0.5rem;
}
.btn:hover {
    transform: translateY(-5px);
}
.btn-color-2 {
    border: #fb6f92 0.1rem solid;
    background: white;
    color: #fb6f92;
}
.btn-color-1 {
    border: none;
}
.btn-color-1:hover, .btn-color-2:hover {
    cursor: pointer;
    transition: ease-out 0.5s;
}
.btn-color-1, .btn-color-2:hover {
    background: #fb6f92;
    color: white;
}
.btn-color-1:hover {
    border: #fb6f92 0.1rem solid;
    background: white;
    color: #fb6f92;
}
.btn-color-2:hover {
    border: rgb(255, 255, 255) 0.1rem solid;
}
.btn-container {
    gap: 1rem;
}

/* About */
#about {
    position: relative;
    margin-top: 8rem;
}
.about-containers {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.about-details-container {
    justify-content: center;
    flex-direction: column;
}
.about-containers, .about-details-container {
    display: flex;
}
.about-pic {
    border-radius: 20%;
}
.arrow {
    position: absolute;
    right: -5rem;
    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;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.det-abt {
    border: rgb(53, 53, 53) 0.1rem solid;
    box-shadow: none;
}
.section-container {
    gap: 2rem;
    /* height: 80%; */
}
.section_pic-container {
    height: 400px;
    width: 400px;
    margin: auto 0;
}
.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}
.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #fb6f92;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 65%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
    font-size: 14px;
}
.tab-contents ul li span{
    color: #fb6f92;
    font-size: 16px;
}
.tab-contents{
    display: none;
    border-left: 2px solid #bababa;
    padding: 0px 30px;
}
.tab-contents.active-tab{
    display: block;
}
/* 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;
    justify-content: center;
    flex-direction: column;
}
.article-container {
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-around;
}
article {
    display: flex;
    width: 10rem;
    justify-content: space-around;
    gap: 0.5rem;
}
article .icon {
    cursor: default;
}
.exp{
    transition: background 0.5s, transform 0.5s;
    background-image: linear-gradient(0deg, #ffc2d1, #fb6f92);
    box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05),
    25px 35px 20px rgba(0, 0, 0, 0.05),
    inset --20px -20px 25px rgba(255,255,255,0.9);
    
}    
.exp:hover{
    transform: translateY(-10px);
}
/* projects */
#projects {
    position: relative;
}
.color-container{
    border-color: rgb(163, 163, 163);
    background: rgb(250, 250, 250);
}
.project-img {
    border-radius: 2rem;
    width: 60%;
    height: 60%;
}
.project-title{
    margin: 1rem;
    color: #000;
}
.project-btn{
    color: #000;
    border-color: rgb(163, 163, 163);
}
/* Contact */

#contact{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 80vh;
}
.contact-info-upper-container{
    display: flex;
    justify-content: center;
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    border-color: rgb(163, 163, 163);
    background: rgb(250, 250, 250);
    margin: 2rem auto;
    padding: 0.5rem;
}
.contact-info-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}
.contact-info-container p{
    font-size: larger;
}
.contact-icon{
    cursor: default;

}
.email{
    height: 2.6rem;
}
/* Footer */
footer{
    height: 26vh;
    position: relative;
    /* background: #fb6f92; */
}
footer p{
    text-align: center;
}
.foot li a:hover{
    color: white;
    text-decoration: none;
}
#pink{
    background-image: linear-gradient(0deg, #ffc2d1, #fb6f92);
    /* background: #fb6f92;  */

}
