/* ============================================
 * Cursor CSS Module
 * Custom cursor styles for desktop
 * ============================================ */

/* --- Base Cursor Elements --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    opacity: 1;
    transition: none !important;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    transition: width 0.2s, height 0.2s, border-color 0.2s !important;
}

/* --- Hover State --- */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 204, 113, 0.1);
    border-color: var(--accent-color);
}

/* --- Hide Default Cursor on Desktop --- */
@media (min-width: 901px) {
    body, a, button, .project-card, input, textarea {
        cursor: none !important;
    }
}

/* --- Hide Custom Cursor on Mobile --- */
@media (max-width: 900px) {
    .cursor-dot, .cursor-outline { display: none !important; }
}
