/*
 Theme Name:   SD Child Theme
 Theme URI:    https://www.shubhadas.com
 Description:  Default SD child theme
 Author:       SD
 Author URI:   https://www.shubhadas.com
 Template:     generatepress
 Version:      0.1
*/

/* Animated Gradient Text */
.gb-text-hero {
    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;
}

.glass-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
