@media (max-width: 768px) {
  #desktop-nav {
    display: none;
  }

  #hamburger-nav {
    display: block;
    background: rgba(0, 0, 0, 0.7);
  }

  .hamburger-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .hamburger-icon {
    cursor: pointer;
  }

  .menu-links {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    right: 1rem;
    top: 5rem;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

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

  .menu-links a {
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
  }

  .menu-links a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s;
  }

  .hamburger-icon.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

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

  .hamburger-icon.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  #profile .section__pic-container img {
    width: 100px;
    height: 100px;
  }

  .section__text {
    text-align: center;
  }

  #about .section-container {
    flex-direction: column;
  }

  .about-details-container {
    margin-left: 0;
  }

  .experience-details-container {
    flex-direction: column;
  }

  .projects-container {
    flex-direction: column;
  }
}