#sidebar {
    background-image: url('/assets/img/backgrounds/getaway.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

#sidebar .site-title a {
    color: #E1DDDB;
}

#sidebar #avatar {
    display: block;
    width: 7rem;
    height: 7rem;
    overflow: hidden;
    box-shadow: #0c4a6000 0 0 0 2px;
    background-image: url('/assets/img/avatar/duke.jpg');
    background-position-y: center;
    background-size:cover;
    transform: translateZ(0);
}

#sidebar .sidebar-bottom {
    padding-left: auto;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
}

#sidebar a {
    color: #E1DDDB;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#sidebar ul li.nav-item.active .nav-link {
    /* color: var(--sidebar-active-color); */
    background-color: #0C4A60;
}

#sidebar ul li.nav-item.active .nav-link {
    color: #E1DDDB;
    background-color: #0C4A60;
}

#sidebar .sidebar-bottom .icon-border {
    margin-left: calc((0.8rem - 3px) / 2);
    margin-right: calc((0.8rem - 3px) / 2);
    background-color: #78787800;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
  }
  .portfolio-container {
    margin: 20px 0;
    overflow-y: auto;
    max-height: calc(100vh - 60px); /* Adjust based on header/footer height */
  }
  
  .section {
    margin-bottom: 40px;
  }
  
  .section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  .experience-item {
    margin-bottom: 20px;
  }
  
  .portfolio-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .portfolio-item h3 {
    margin-top: 0;
  }
  
  .portfolio-item p {
    margin: 10px 0;
  }
  
  .portfolio-item a {
    color: #007acc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .portfolio-item a:hover {
    text-decoration: underline;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  