/*
 Theme Name:   pure-portfolio-child
 Theme URI:    https://marzieh-ghodrat.com/pure-portfolio-child/
 Description:  A child theme for pure-portfolio
 Author:       Marzieh Ghodrat
 Author URI:   https://marzieh-ghodrat.com
 Template:     pure-portfolio
 Version:      1.0.0
 Text Domain:  pure-portfolio-child
*/


body.custom-cursor-active, html, * {
    cursor: none !important;
}

/* غیرفعال کردن نشانگرهای احتمالی قالب اصلی */
#magicPointer .cursor, .portfolio-cursor, .mouse-cursor {
    display: none !important;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999999 !important;
    backdrop-filter: blur(1px) invert(100%);
    -webkit-backdrop-filter: blur(1px) invert(100%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.custom-cursor.hover {
    width: 30px;
    height: 30px;
    background-color: rgba(60, 218, 100, 0.2);
    backdrop-filter: blur(2px) invert(100%);
    -webkit-backdrop-filter: blur(2px) invert(100%);
}

*:focus {
    outline: none !important;
}

/* غیرفعال کردن نشانگر در موبایل */
@media only screen and (max-width: 767px) {
    .custom-cursor {
        display: none;
    }
}