/* global-cursor.css */
@media (pointer: fine) {
    body, a, button, [role="button"], input, select, textarea, .magnetic-link {
        cursor: none !important;
    }
}

#custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #006557;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    display: none; /* Hide until JS activates it */
}

#custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #006557;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999998;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    display: none;
}

#custom-cursor-follower.hover-active {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 101, 87, 0.15);
}

/* Dynamic White Cursor over dark backgrounds */
#custom-cursor-dot.cursor-light {
    background-color: #ffffff;
}

#custom-cursor-follower.cursor-light {
    border-color: #ffffff;
}

#custom-cursor-follower.cursor-light.hover-active {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Active Navbar Link Highlighting */
.premium-navbar .nav-link.active {
    font-weight: 800 !important;
    text-decoration: underline !important;
    text-underline-offset: 6px !important;
    text-decoration-thickness: 2px !important;
    opacity: 1 !important;
}

/* Mobile Navbar Links Color Fix */
@media (max-width: 968px) {
    .premium-navbar .nav-link {
        color: #111111 !important;
    }
}
