/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Dots Styling */
.nav-dots {
    position: fixed;
    top: 50%;
    right: 50px; /* Adjust as needed */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Space between dots */
    z-index: 1000; /* Ensure it's above other content */
    opacity: 0; /*  Initially hidden */
    transition: opacity 0.5s ease-in-out;
    pointer-events: none; /* Prevent interaction when hidden */
}

.nav-dots.visible {
    opacity: 1;  /* Fully visible when the 'visible'  class is added */
    pointer-events: auto; /* Enable interaction when visible */
}

/* Inactive Dots */
.nav-dots .dot {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s  ease;
    opacity: 0.6;
    transform: translateY(0);
}

/* Active  dot */
.nav-dots .dot.active {
    background-color: #ffffff;
    border: none;
    opacity: 1;
}

/*Hover Effects */
.nav-dots .dot:hover {
    background-color: #ffffff; /* Highlight on hover */
    opacity: 1;
    border-color: #ffffff;
}

/* Optional: Increase the clickable area without affecting the dot size */
.nav-dots .dot {
    position: relative;
}

.nav-dots .dot::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    pointer-events: none;
    /* Invisible but enlarges the clickable area */
}

/* Testing */
.center-line {
    position: fixed;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100vh;
    background-color: red;
    z-index: 9999;
    opacity:  0.5;
  }
