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

*{
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}
/* Desktop Menu */

nav, .desktop-menu-items {
    display: flex;
}
nav {
    justify-content: space-around;
    align-items: center;
    height: 15vh;
}
.logo {
    font-size: 1.5rem;
    
}
.logo:hover {
    cursor: default;
}
.desktop-menu-items {
    gap:2rem;
    list-style: none;
    font-size: 1.5rem;
}

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

/* Mobile Menu */

#mobile-menu-bar {
    display:none;
}
.mobile-menu{
    position: relative;
    display: inline-block;
}
.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

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

.mobile-menu-items {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}
.mobile-menu-items a{
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out; 
}
.mobile-menu-items li {
    list-style: none;
}

.mobile-menu-items.open {
    max-height:300px;
}

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


section{
    padding-top: 4vh;
    height: 96vh;
    margin: 0 100px;
    box-sizing: border-box;
    min-height: fit-content;
}
/* Profile Section*/
#profile{
    display: flex;
    justify-content: center;
    gap:5rem;
    height: 80vh;
}
.profile_pic{
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;

}
.profile_pic img {
    border-radius: 200px;
}
.profile_bio{
    text-align: center;
    align-self: center;
}
.profile_bio h2{
    text-align: center;
    font-size: 3rem;
}
.profile_bio h3{
    text-align: center;
    font-size: 2rem;
    color: rgba(0,0,0,.7);
}
.profile_social{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap:1rem;
}
.profile_social img{
    cursor: pointer;
}
.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: .5rem;
  }
.btn-profile, .btn-contact {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 10px;
    width: 125px;
    border-radius: 50px;
    border: 2px black solid;
    background: white;
}

.btn-contact {
    background-color: black;
    color: white;
}
.btn-profile:hover{
    background-color: black;
    color: white;
}
.btn-profile:hover, .btn-contact:hover {
    cursor: pointer;
}
.icon_d {
    position: absolute;
    right: 3rem;
    bottom: 5rem;
}
/* Profile Section*/


#about{
    position: relative;
}
.about_container {
    display: flex;
    gap:4rem;
    height: 80%;
    align-items: center;
    justify-content: center;
}
.about_content1{
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    display: flex;
}
.content{
    justify-content: center;
    flex-direction: column;
    display: flex;
}


.icon_down{
    position: absolute;
    right: -5rem;
    bottom: 2.5rem;
}
.about_experience,.about_education{
    padding: 1.5rem;
    flex: 1;
    background: white;
    border-radius: 2rem;
    text-align: center;
    border: 2px solid black;
}

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

.about_pic{
    height: 400px;
    width: 400px;
    margin: auto 0;
    display: flex;
}
.aboutimage{
    border-radius: 200px;
}
/* Experience Section */



.icon_e {
    position: absolute;
    right: 3rem;
    bottom: 5rem;
}

/* Contact Section */

#contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.contact_container{
    display: flex;
    justify-content: center;
    border-radius: 2rem;
    border: 2px solid black;
    margin: 2rem auto;
    padding: 0.5rem;
}
.contact_email,.contact_linkedin{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}

/* Footer section */

footer {
    height: 26vh;
    margin: 0 1rem;
  }
  
  footer p {
    text-align: center;
  }
  
/* General Text*/
  .tittle {
    font-size: 3rem;
    text-align: center;
}