/*
Theme Name: Divi 5 Child — RobertPeterson.nl
Theme URI: https://robertpeterson.nl
Description: Custom child theme for Divi 5, branded for RobertPeterson.nl.
Author: Robert Peterson
Author URI: https://robertpeterson.nl
Template: Divi
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: divi5-child
*/

/*
 * Add your custom CSS below or in assets/css/custom.css.
 * The parent Divi stylesheet is loaded automatically via functions.php.
 */

/* Cursor + brush effects */
#vriesiaBrushCursor {
    position: fixed;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: scale(0);
    transition: transform 0.15s ease;
    mix-blend-mode: multiply;
}
#vriesiaBrushCursor.active { transform: scale(1); }
#vriesiaBrushCursor.painting { transform: scale(1.6); }

.vriesia-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    z-index: 999998;
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: vriesia-fade 0.9s ease forwards;
}
@keyframes vriesia-fade {
    to { opacity: 0; transform: scale(0.3); }
}

.vriesia-blob {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 999997;
    transform: scale(0);
    animation: vriesia-blob 1.1s ease forwards;
    mix-blend-mode: multiply;
}
@keyframes vriesia-blob {
    30%  { transform: scale(1.5); }
    100% { transform: scale(1.5); opacity: 0; }
}

.vriesia-splatter,
.vriesia-drip {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.vriesia-splatter { animation: vriesia-pop 1s ease forwards; }
.vriesia-drip     {
    width: 4px;
    height: 30px;
    border-radius: 2px;
    animation: vriesia-drip 1.4s ease-in forwards;
}
@keyframes vriesia-pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1);   opacity: 0.8; }
}
@keyframes vriesia-drip {
    0%   { transform: translateY(0);   opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: translateY(120px); opacity: 0; }
}