/* Styles pour la navigation par points d'étape */

.dots-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px 5px;
    background-color: rgba(10, 10, 10, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

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

.dots-nav__item:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dots-nav__item.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    transform: scale(1.3);
}

.dots-nav__tooltip {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dots-nav__item:hover .dots-nav__tooltip {
    opacity: 1;
    visibility: visible;
    right: 35px;
}

/* Responsive */
@media (max-width: 768px) {
    .dots-nav {
        right: 10px;
    }
    
    .dots-nav__item {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .dots-nav {
        display: none; /* Masquer sur les très petits écrans */
    }
}