/*GENERAL STYLING*/

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

* {
    margin: 0;/*remove all margin spaces*/ 
    padding: 0;
    /* box-sizing: border-box; */
}
body {
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
p {
    color: rgb(85, 85, 85);
}

/*TRANSITION*/
a {
    transition: all 300 ease;
}

/*DESKTOP NAV */
nav,
.nav-links {
    display: flex;
}
nav {
     justify-content: space-around;
     align-items: center;
     height: 17vh;
}
.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: .9rem;
    font-family:cursive;
    font-weight: 600;
}

a {
  color: #444444;
  text-decoration: none;
  text-decoration-color: #95d2d8;   
}
a:hover {
    color: #a6a5a5;
    text-decoration: underline;
    text-underline-offset: .5rem;
    text-decoration-color: rgb(181, 181, 181);
} 
.logo {
    font-size: 1.3rem;
    font-weight: 800;

}
.logo:hover {
    cursor:default;
    color: #a0a335;
}

/*HAMBURGER MENU */
#humburger-nav {
    display: none;
}
.humburger-menu { 
    position: relative;
    display: inline-block;
}
.humburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}
.humburger-icon span {
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.3s ease-in-out;
}

/*Humburger turn into X when it clicked */
.menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f6ecf4;
    border-radius: 3px;
    width: fit-content;
    z-index: 1;
    max-height: 0; /* NOT max-width */
    overflow: hidden;
    transition: all 0.3s ease-in-out;
} 
.menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.menu-links li {
    list-style: none;
}
.menu-links.open {
    max-height: 300px;
   
}
.humburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}

.humburger-icon.open span:nth-child(2) {
   opacity: 0;
}

.humburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

.humburger-icon span:first-child {
    transform: none ;
}

.humburger-icon span:first-child {
    opacity: 1;
}

.humburger-icon span:first-child {
    transform: none ;
}

/*SECTION */
section {
    position: relative;
    padding-top: 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: 3rem;
    height: 80vh;
}

 .section_pic-container {
    display: flex;
    /* height: 400px;
    width: 400px; */
    margin: auto 0;
}

.section_pic-container img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    align-self: center;
    justify-self: center;
}

 .section_text {
    align-self: center;
    text-align: center;
/* text-align: start; */
 }

.section_text p {
    font-weight: 600;
}

.text_p1 {
    text-align: center;
    font-weight: 600;
    /* font-size: 1.75rem;
    margin-bottom: 1rem */
}

.text_p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: .5rem;
    font-weight: 900;
    color: #c08888;
}

#social-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap:1rem;
    /* margin-left: -15rem; */
}

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

/*BUTTON */
button .btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.button {
    font-weight: 600;
    padding: 1rem;
    width: 8rem;
    height: 2.7rem;
    border-radius: 2rem;

} 

.btn-color-2,
 .btn-color-1 {
    border: rgb(53, 53, 53) 0.1rem solid;
 }
 .btn-color-2:hover,
 .btn-color-1:hover {
    cursor: pointer;
    transition: all 300ms ease-in;
 }
 .btn-color-2:hover,
 .btn-color-1 {
   background: rgb(38, 54, 63);
   color: #fff;
 }
 .btn-color-1:hover {
    background: #b0a741;
 } 

 /* ABOUT SECTION */
  #about {
    position: relative;
  }
  #about .text_p1,
   #experience .text_p1,
   #projects .text_p1  {
    font-weight: 700;
    font-size: .8rem;
  }
  #about .title,
   #experience .title,
   #projects .title {
    font-weight: 800;
    font-size: 2.3rem;
  }
  #about .title-me {
    color: #95d2d8;
  }
  .section-container {
    /* margin-top: 0; */
    gap: 2rem;
    height: 65%;
  }
 
  .about-container {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .about-details-container {
    justify-content: center;
    flex-direction: column;
  }
  .about-container,
   .about-details-container {
    display: flex;
   }
   .about-pic {
        border-radius: 2rem;
   }
   .arrow {
    position: absolute;
    right: -5rem;
    bottom: 2.7rem;
   }
   .details-container {
    padding: 1.5rem;
    flex: 1;
    background: #fff;
    border-radius: 2rem;
    border: #242424 1px solid;
    border-color: #787474;
    text-align: center;
   }
   .details-container h1 {
    font-weight: 600;
   }
   .details-container p {
    font-size: .9rem;
    padding-top: .8rem;
    font-weight: 600;
    color:#666666;
   }
   .details-container p span {
    color:#b5b81d;
   }
   #about .about-pic {
     border-radius: 8%;
   }

   /* EXERIENCE SECTION */
    #experience {
        position: relative;
    }
   
    .experience-sub-title {
        color: #787474;
        font-weight: 600;
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    .experience-details-container {
        display: flex;
        justify-content: center;
        flex-direction: column; 
        margin: 1.4rem  0 0 0;
    }

    .articles-container {
        display: flex;
        text-align: initial;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
    }

    article {
        display: flex;
        width: 10rem;
        justify-content: space-around;
        gap: 0.5rem;
    }
    article h3 {
        color: #0d1c21;
    }
    article .icon {
        cursor: default;
    }

    /* PROJECTS SECTIONS */
    #projects {
        position: relative;
    }
    .color-container {
        border-color: #a6a5a5;
        background: #fff;
    }
    .project-img {
        border-radius: 2rem;
        width: 90%;
        height: 90%;
    }
    .project-title {
        margin: 1rem;
        color: #000;
    }
    .project-btn {
        color: #1c1b1b;
        border:#757d89 1px solid;
    }

    /*CONTACT SECTION  */
    #contact {
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: 75vh;

    }
    .contact-info-upper-container {
        display: flex;
        justify-content: center;
        border-radius: 2rem;
        border: 1px solid #a6a5a5;
        border-color: #8e8c8c;
        background:#fcf9f9;
        margin: 3rem auto;
        padding: 2.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-icon {
        height: 2.5rem;
    }

    /*FOOTER SECTION */
    footer {
        height: 28vh;
        margin: 0 1rem;
    }
    footer nav {
        margin-bottom: .8rem;
    }
    footer p {
        text-align: center;
        /* margin-top: -2rem; */
        font-weight: 600;
        color: #8e8c8c;
        font-size: .9rem;
    }

      
   
