.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 5rem;
  z-index: 100;
  pointer-events: none;
}

.nav a {
  color: var(--yellow);
  text-decoration: none;
  pointer-events: auto;
}

.kolam-link {
  position: absolute;
  left: var(--icon-left);
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  pointer-events: auto;
}

.kolam-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}


.name-link {
  position: absolute;
  right: 1.6rem;
  top: 1.62rem;
  font-size: 1rem;
  line-height: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.scroll-dots {
  position: fixed;
  left: calc(var(--icon-left) + (var(--icon-size) / 2) - (var(--dot-size) / 2));
  top: 6.9rem;
  height: calc(100vh - 10rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 90;
}

.scroll-dot {
  width: var(--dot-size);
  height: var(--dot-size);
  border: 0;
  border-radius: 50%;
  background: var(--dot-inactive);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.scroll-dot.passed,
.scroll-dot.active {
  background: var(--cream);
}

.scroll-dot:hover {
  background: var(--cream);
  transform: scale(1.35);
}

@media (max-width: 56.25rem) {
  .kolam-link {
    top: 1.5rem;
  }

  .name-link {
    top: 1.6rem;
    right: 1.4rem;
    font-size: 0.75rem;
  }

  .scroll-dots {
    top: 6.25rem;
    height: calc(100vh - 9.5rem);
  }
}
