/* GENERAL */

    /* Importing Google Fonts */
    @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;
  background-color: white;
}

html {
  scroll-behavior: smooth;
}

p {
    color:rgb(85,85,85);
  font-size: 1.2rem;
  line-height: 1.8rem;
}

/* TRANSITION */
a, .btn {
  transition: all 0.3s ease;
}

/* DESKTOP NAV */
nav, .nav-links{
    display: flex;
}

nav{
    justify-content: space-around;
    align-items: center;
    height: 10vh;
}

.nav-links{
    gap: 2rem;
    list-style-type: style none;
    font-size: 1.5rem;
}

a{
    text-decoration: none;
    color: black;
    text-decoration-color: white;
}
a:hover{
    color: grey;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
    text-decoration-color: rgb(181,181,181);
}

.logo{
    font-size: 2rem;
    font-weight: 500;
}
.logo:hover{
    cursor: default;
}

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

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

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

.hamburger-icon span{
    display: block;
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 5px;
    transition:all 0.3s ease-in-out
}

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

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

.menu-links li{
    list-style-type: none;
}

.menu-links.open{
    max-height: 500px;
    background-color: white;
}

.hamburger-icon.open span:first-child{
    transform: rotate(45deg) translate(10px, 0px);
}

.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;
}

/* SECTIONS */

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

.section-container{
    display: flex;
}

/* PROFILE SECTION */
#profile{
    display: flex;
    justify-content: center;
    gap: 2rem;
    height: 60vh; 
}

.section__pic-container{
    width: 400px;
    height: 400px;
    display: flex;
    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-weight: 1.75rem;
    margin-bottom: 1rem;
}

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

#socials-container{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

/*ICON*/
.icon{
    cursor: pointer;
    height: 2rem;
}
.icon-reaper{
    cursor: pointer;
    height: 2rem;
}
.icon-dark{
    cursor: pointer;
    height: 2rem;
    display: none;
}

/* BUTTONS */

.btn-container{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn{
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem;
    width: 7rem;
    border-radius: 2rem;
}

.btn-color-1, .btn-color-2{
    border: rgb(53,53,53) 0.1rem solid;
}
.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-color2{
    background: none;
}
.btn-color-2:hover{
    border: white 0.1rem solid;
}
.btn-container{
    gap: 1rem;
}

/* ABOUT */

#about{
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
}
.about-container{
    gap: 2rem;
    margin-bottom: 2rem;
     margin-top: 2rem; 
    }

.about-details-container{
    justify-content: center;
    flex-direction: row;
}

.about-container, .about-details-container{
    display: flex;
}

.text-container {
    display: block;        
    width: 60vw;  
    gap: 0;
    margin: 0;
    padding: 0;
}
#about .text-container p {
    display: block;
    text-align: left;
  width: 60vw;       
    box-sizing: border-box;
}
.about-pic{
    border-radius: 2rem ;
    margin-top: none;
    padding-top: none;
}

.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;
    
}

.section-container{
    gap: 4rem;
    height:75%;
    width: 10%;
    margin:none;
    padding:none;
}

.section__pic-container{
    width: 400px;
    height: 400px;
    margin :  none;
    padding: none;
}


/* SKILLS SECTION */
#skills{
    position: relative;
}

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

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

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

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

article.icon{
    cursor: default;
}

/* EXPERIENCE SECTION */
#experience{
    position: relative;
}

/* PROJECTS SECTION */
#projects{
    position: relative;
    margin-top: 10rem;
}

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

.project-img{
    border-radius: 2rem;
    width: 90%;
    height: 90%;
}

.project-title{
    font-size: 1.2rem;
    color:black;
}

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

/* CONTACT SECTION */
#contact{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 70vh;
}
.contact-info-upper-container{
    display: flex;
    justify-content: center;
    border-radius: rem;
    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;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    margin: 1rem;
}

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

.contact-icon{
    cursor: default;
}

.email-icon{
    height: 2.5rem;
}

/* FOOTER SECTION */
footer{
    height: 15vh;
    margin: 0 1rem;
}

footer p{
    text-align: center;
}

/* DEMO REEL SECTION */
.demo-reel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/*Dark Mode*/

.dark-mode {
    background-color: black;
    color: white;
    .project-img, .color-container, .about-container, .about-details-container, .about-pic, .details-container, .section__text p, .skills-sub-title, .project-title, .project-btn, .contact-info-container p, footer p, details-container, .btn-color-2 {
        background-color: black;
        border-color: white;
    } 

     .nav-links a, .menu-links a, .section__text p, .skills-sub-title, .project-title, .project-btn, .contact-info-container p, footer p, .details-container {
        color: white;
    }
    a, p, .btn, .nav-links a, .menu-links a, .section__text p, .skills-sub-title, .project-title, .project-btn, .contact-info-container p, footer p, .details-container {
        color: white;
    }

    .contact-info-upper-container {
        background-color: black;
        border-color: white;
    }

     .contact-info-container{
        filter: invert(1);
    }

    .contact-info-container p{
        filter: invert(1);
    }

.icon-dark {
    display:inline;
    margin: 0 auto;
    filter: invert(1);
}

#projects .icon {
     display: none; 
}

#skills .icon {
    filter: invert(1);
}

#about .icon {
    filter: invert(1);
}

#experience .icon {
    filter: invert(1);
}

.arrow {
    filter: invert(1);
}
  }