/**
 * HDev Scroll Navigation - Diamond Style
 * Custom scroll navigation with diamond-shaped dots on the left
 */

/* ============================================
   Navigation Container
   ============================================ */
.hdev-scroll-bullets {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ============================================
   Scroll Item Wrapper (Dot + Tooltip)
   ============================================ */
.hdev-scroll-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* ============================================
   Circle Dots
   ============================================ */
.hdev-scroll-bullets a {
    display: block;
    width: 13px;
    height: 13px;
    background: #acacac;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
    border: 2px solid transparent;
    margin: 0;
}

/* ============================================
   Tooltip
   ============================================ */
.hdev-scroll-tooltip {
    position: absolute;
    left: 25px;
    white-space: nowrap;
    background: var(--color-secondary, #b8954d);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Tooltip arrow */
.hdev-scroll-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--color-secondary, #b8954d);
}

/* Show tooltip on hover */
.hdev-scroll-item:hover .hdev-scroll-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Active State */
.hdev-scroll-bullets a.active,
.hdev-scroll-bullets a:hover.active {
    background: #ffffff;
    border-color: var(--color-secondary);
    margin: 0;
}

/* Hover State */
.hdev-scroll-bullets a:hover {
    background: rgba(172, 172, 172, 0.8);
    margin: 0;
}

/* ============================================
   Hide Flatsome Default Scroll Bullets
   ============================================ */
.scroll-to-bullets {
    display: none !important;
}

/* ============================================
   Responsive - Hide on Mobile
   ============================================ */
@media (max-width: 1024px) {
    .hdev-scroll-bullets {
        display: none;
    }
}