/*This is what's going to change*/

html, body {
    background-color: white;
}

#nav-bar a,
.basic-info,
#about,
#experience,
#projects,
#contacts,
#end-links a,
#nav-update-label
{
    color: black;
}

.contact-icon {
    background-color: white;
}

/*Original Css*/

html, body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: poppins;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

.sections {
    opacity: 0;
    transition: opacity 1.5s ease;
  }
  
.fade-in {
    opacity: 1;
  }

#root {
    height: 100%;
    overflow-x: hidden;
}

/*Nav Bar Section*/

#nav-bar a {
    text-decoration: none;
    font-size: 30px;
}

#nav-bar a:hover {
    color: gray;
    text-decoration: underline;
}

#nav-bar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 2%;
    width: 100vw;
    overflow: hidden;
}

.nav-parts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#nav-home {
    align-self: center;
    font-size: 25px;
}

#nav-update-label {
    margin-left: 50px;
    font-weight: 200;
}

#nav-info-container {
    display: flex;
    gap: 25px;
}


#nav-theme-cont {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border: solid;
    border-width: 3px;
    border-radius: 20rem;
    transition: transform 0.3s ease;
}

#nav-theme-cont:hover {
    opacity: 0.5;
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 0.7);
}

#hamb-menu {
    display: none;
}

/*Important setting*/

#home,
#about,
#experience,
#projects,
#contacts {
    height: max-content;
}
button {
    font-family: poppins;
}

/*Home Section*/

#home {
    height: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#profile-picture {
    width: 450px;
    height: 450px;
    border-radius: 100%;
    object-fit: cover;
}

.basic-info {
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

#home-info-name {
    font-size: 50px;
    margin: 0;
}

#home-info-job {
    font-weight: 200;
    font-size: 30px;
    margin: 0;
}

.home-info-buttons {
    display: flex;
    margin: 5px;
    margin-top: 10px;
}

#home-info-download-btn:hover {
    opacity: 0.5;
    cursor: pointer;
}

#home-info-contact-btn:hover {
    opacity: 0.5;
    cursor: pointer;
}

#home-info-download-btn {
    background-color: white;
    color: black;
    border-radius: 25px;
    width: 150px;
    height: 50px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 15px;
    border-style: solid;
    border-width: 2px;
}

#home-info-contact-btn {
    background-color: rgb(66, 65, 65);
    color: white;
    border-radius: 25px;
    width: 150px;
    height: 50px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 15px;
    border-style: solid;
    border-width: 2px;
}

#github-icon {
    width: 30px;
    background-color: white;
    border-radius: 100%;
    border: none;
}

#github-icon:hover {
    opacity: 0.5;
    cursor: pointer;
}

#x-icon {
    width: 30px;
    background-color: white;
    border-radius: 100%;
    border: none;
}

#x-icon:hover {
    opacity: 0.5;
    cursor: pointer;
}


/* about me section*/
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#profile-picture-2 {
    width: 400px;
    height: 400px;
    border-radius: 2rem;
}

#about-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#about-info-texts {
    width: 35%;
    height: 100%;
}

#about-paragraph {
    width: 100%;
}

#exp-box {
    display: flex;
    flex-direction: column;
    width: 60%;
    height: 40%;
    border: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 2rem;
    color: black;
    justify-content: center;
    align-items: center;
    transform: translateY(0px);
    transition: transform 0.3s ease-in-out;
}

#exp-box:hover {
    opacity: 0.9;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 0.7);
    transform: translateY(-6px);
}

#exp-box-icon {
    margin-top: 20px;
    margin-bottom: 0;
    width: 20px;
}

#exp-box-h {
    margin: 0;
}

#exp-box-p {
    margin: 0;
}


/*Experience section*/

#experience {
    height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#experience-h {
    font-size: 3rem;
}

#experience-boxes {
    display: flex;
    flex-direction: row;
    width: 90%;
    height: 50%;
}

#fontend-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 3fr;
    width: 80%;
    height: 100%;
    margin-right: 50px;
    border-radius: 2rem;
    border: solid;
    border-color: gray;
    align-items: center;
    font-size: 1rem;
}

#front-box-header {
    grid-row: 1;
    grid-column: 1 / span 2;
    justify-self: center;
}

#front-box-clm-1 {
    grid-row: 2;
    grid-column: 1;
}

#front-box-clm-2 {
    grid-row: 2;
    grid-column: 2;
}

.skill-frontend {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 50px;
}

.skill-backend {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 50px;
}

#backend-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 3fr;
    width: 80%;
    height: 100%;
    margin-right: 50px;
    border-radius: 2rem;
    border: solid;
    border-color: gray;
    align-items: center;
}

#back-box-header {
    grid-row: 1;
    grid-column: 1 / span 2;
    justify-self: center;
}

#back-box-clm-1 {
    grid-row: 2;
    grid-column: 1;
}

#back-box-clm-2 {
    grid-row: 2;
    grid-column: 2;
}

.occupied-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}


/*Projects*/

#projects {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#projects-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 85%;
    border: solid;
    border-color: rgb(49, 48, 48);
    border-width: 3px;
    border-radius: 2rem;
    padding: 30px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0px);
}

/*-------------------------*/

.project:hover {
    cursor: pointer;
    transform: translateY(-6px);
    opacity: 0.8;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 0.7);
}

.projects-imgs {
    width: 60%;
    border-radius: 2rem;
}

.project-descriptions {
    font-family: poppins;
    font-size: .75rem;
    font-weight: 300;
}

#projects button {
    width: 100px;
    padding: 10px;
    border-radius: 2rem;
    border: solid;
    border-color: rgb(49, 48, 48);
    border-width: 2px;
    font-size: 15px;
}

#projects button:hover {
    opacity: 0.5;
    cursor: pointer;
}

/*Contacts*/

#contacts {
    height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#contact-h {
    font-size: 50px;
}

#icons-cont {
    display: flex;
}

.contact-icon {
    border: solid;
    border-width: 3px;
    border-color: black;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding: 5px;
    margin: 20px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0px);
}

.contact-icon:hover {
    cursor: pointer;
    opacity: 0.7;
    transform: translateY(-6px);
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 0.7);
}

.contact-icon:active {
    background-color: black;
}

#end-links {
    display: flex;
    gap: 30px;
}

#end-links a {
    text-decoration: none;
}

#end-links a:hover {
    cursor: pointer;
    opacity: 0.7;
    text-decoration: underline;
}

.end-link {
    font-size: 2rem;
    font-weight: 700;
}

.pop-up {
    display: none;
    position: absolute;
    margin-top: -120px;
    margin-left: 50px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 1rem;
    background-color: rgb(87, 87, 87);
    color: white;
    width: 200px;
    height: 50px;
}

#footer {
    width: max-content;
    justify-content: flex-end;
}

#feed-user {
    width: 250px;
    height: 100px;
    border: 2px black;
    border-radius: .75rem;
    background-color: lightgreen;

    display: none;
    position: fixed;
    top: 2%;
    right: 2%;

    padding: 5px;
}