/* Svetlost koja prati kursor */
#cursorLight {
    position: absolute;
    width: 180px;
    height: 180px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,140,40,0.25) 0%, rgba(242,140,40,0) 70%);
    filter: blur(45px);
    opacity: 0;
    transition: opacity 0.3s ease-out;
     z-index: 9;
}

/* Kada si u hero sekciji — upali svetlost */
.cursor-area:hover #cursorLight {
    opacity: 1;
}
