/* Section indicator styles for single page navigation */
.section-indicator {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 900;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.5);
}

.indicator-dot:hover {
  transform: scale(1.4);
  background-color: var(--primary-color);
}

.indicator-dot:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.indicator-dot .tooltip {
  position: absolute;
  left: 20px;
  top: 0;
  background-color: rgba(10, 10, 10, 0.8);
  color: var(--light-text);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Hide on mobile screens */
@media screen and (max-width: 768px) {
  .section-indicator {
    display: none;
  }
}
