/*
Theme Name: Tharu Photography
Theme URI: https://tharu.com
Author: Tharuka Priyadarshana
Author URI: https://tharu.com
Description: A high-level modern UI/UX photography theme featuring Three.js, p5.js, Tailwind CSS, parallax animations, and interactive mouse-following elements.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tharu-photography
*/

/* Custom CSS for the Mouse Follower and base styles */
body {
    cursor: none; /* Hide default cursor for custom animation */
    overflow-x: hidden;
    background-color: #050505;
    color: #ffffff;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    z-index: 9999;
    mix-blend-mode: difference;
}

#custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
}

#threejs-canvas, #p5js-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}