body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
}

/* Navbar */
.nav-bar {
  background-color: #ffffff;
  padding: 1rem 9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-logo {
  height: 2.5rem;
  width: auto;
}

.nav-link {
  color: #5454FF;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 600;
}

/* Layout */
.content-split {
  display: flex;
  justify-content: space-between;
  padding: 0 9rem;
}

/* Main Content */
/* .projects-wrapper {
  flex: 1;
  margin-top: 6rem;
  padding: 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 900px;
} */

.projects-wrapper {
  flex: 0 0 auto;
  width: 940px; 
  margin-top: 4rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;

  height: 95lvh;
  overflow-y: scroll;
}

.projects-wrapper::-webkit-scrollbar {
  display: none;  /* Chrome, Safari */
}


.project-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 20px;
  padding-bottom: 5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Overlay */
.project-title-overlay {
  position: absolute;
  inset: 0;
  color: #fff;
  padding: 30px;
  font-size: 3rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-title-overlay.blue {
  background: rgba(75, 85, 153, 0.7);
}

.project-title-overlay-blue {
  background: rgba(75, 85, 153, 0.7);
}

.project-title-overlay.pink {
  background: rgba(237, 75, 88, 0.7);
}

.project-title-overlay.yellow {
  background: rgba(255, 230, 127, 0.7);
}

.project-title-overlay::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  background: url('/imgs/projects/arrow.svg') no-repeat center / contain;
}

.project-card:hover .project-title-overlay {
  opacity: 1;
}

/* Right Sidebar */
.projects-right-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  /* margin-top: 4rem; */
  height: 100lvh;

  overflow: none;
  width: 3rem;
}

.right-side-link-projects{
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    color: #5454FF;
    transition: ease-in-out 0.1s;

    white-space: nowrap;
}

.active-project-link {
    color: #FE94FF !important;
    /* transform: scale(1.04); */
    /* font-weight: 800; */

}

.right-side-link-projects {
  position: relative;
  display: inline-block;
  color: #5454FF;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;

  transition: ease-in-out 0.2s all;
}

.right-side-link-projects:hover{
  color: #FE94FF;
}

/* .right-side-link-projects::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #fe94ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.right-side-link-projects:hover::after {
  transform: scaleX(1);
} */