/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Animated Gradient Text */
.gb-highlight {
    background: linear-gradient(to right, #34d399, #a3e635);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Blob Animation */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.blob-anim {
    animation: blob 7s infinite;
}

.hero-glow-blob {
    filter: blur(80px); /* This creates the glow effect */
    animation: gb-pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite; /* This makes it breathe */
    pointer-events: none; /* Ensures clicking goes through them */
}

/* The Breathing Animation */
@keyframes gb-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.1); }
}

.glow-blob-blue, .glow-blob-red {
    filter: blur(80px); /* Creates the misty glow */
    pointer-events: none; /* Allows clicking through them */
    z-index: 0; /* Keeps them behind text */
}

.hero-gradient-text {
    background: linear-gradient(to right, #FF3B30, #a855f7); /* Red to Purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}