/* header */
.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 2;
}

.fa-dharmachakra {
  font-size: 35px;
}

.logo-header {
  font-weight: 600;
  font-size: 15px;
}

.nav-item {
  font-size: 15px;
  font-weight: 600;
}

.nav-link {
  margin-right: 20px;
  opacity: 1;
  background-color: #e9e9e9;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
  background-color: #a0a0a0;
  transform: scale(1.1); /* Membesar saat di-hover */
}

.goku-gif {
  height: 55px;
  position: absolute;
  left: 500px;
}

/* main page */

#home {
  padding-bottom: 85px;
}

.title-hero {
  width: 600px;
  z-index: 1;
  position: relative;
}

#get-intouch {
  font-weight: 600;
}

/* about me */
#about-me {
  padding-top: 80px; /* Sesuaikan dengan tinggi navbar */
  margin-top: -80px;
}

.profile-picture {
  width: 180px; /* Ukuran gambar */
  height: 180px;
  border-radius: 50%; /* Membuat gambar bulat */
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5); /* Shadow halus */
  object-fit: cover; /* Agar gambar sesuai ukuran tanpa terpotong */
}

.profile {
  text-align: center;
}

.profile > * {
  margin-top: 10px;
}

.profile-description {
  width: 30%;
  margin: auto;
  font-size: 17px;
  font-weight: 400;
}

#download-cv {
  font-weight: 600;
}

/* Projects */
#projects {
  padding-top: 85px;
  margin-top: -20px;
  margin-bottom: 85px;
}

.title-project {
  text-align: center;
  padding-bottom: 50px;
  font-weight: 600;
}

/* Contact Me */
#contact-me {
  padding-top: 80px;
  margin-top: 80px;
}

/* Footer */
.social-icons a {
  text-decoration: none;
  font-size: 30px;
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.5s;
}

/* CSS FOR MOBILE SCREEN */

.navigation .fa-solid {
  display: none;
}

#side-bar-logo {
  display: none;
}

@media only screen and (max-width: 600px) {
  .goku-gif {
    display: none;
  }

  .title-hero {
    width: 300px;
  }

  #header {
    padding-bottom: 0 !important;
  }

  .navigation .fa-solid {
    display: block;
    font-size: 25px;
    right: 20px;
    position: absolute;
  }

  .navigation ul {
    background: #000000;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding: 50px;
    z-index: 2;
    transition: right 0.5s;
  }

  #nav-container {
    height: 300px;
    width: 200px;
    right: 20px;
    position: relative;
  }

  .nav-item {
    margin-bottom: 10px;
    width: 145px;
    text-align: center;
  }

  .profile-description {
    width: 100%;
  }

  #projects {
    margin-top: -50px;
  }

  #contact-me {
    padding-top: 0;
  }

  #side-bar-logo {
    display: block;
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #e9e9e9;
  }
}
