/* Snappy Cards Logo Component */
/* Consistent sizing and styling across all pages */

.hero-glass-container {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.hero-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 10;
}

.hero-gradient-text {
    background: linear-gradient(to right, #4f46e5, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cards-text {
    margin-left: 12px;
    color: #374151;
}

.hero-bubble-1 {
    position: absolute;
    top: -16px;
    left: -24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.hero-bubble-2 {
    position: absolute;
    top: -32px;
    right: -16px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 2.5s ease-in-out infinite reverse;
}

.hero-bubble-3 {
    position: absolute;
    bottom: -24px;
    left: 25%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec4899, #4f46e5);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 3.5s ease-in-out infinite;
}

.hero-bubble-4 {
    position: absolute;
    bottom: -16px;
    right: -32px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    border-radius: 50%;
    opacity: 0.8;
    animation: float 2s ease-in-out infinite reverse;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
    filter: blur(48px);
    transform: scale(1.1);
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes cardFloat {
    0% { 
        transform: translateY(0px) translateX(0px); 
    }
    25% { 
        transform: translateY(-8px) translateX(3px); 
    }
    50% { 
        transform: translateY(-5px) translateX(-2px); 
    }
    75% { 
        transform: translateY(-12px) translateX(4px); 
    }
    100% { 
        transform: translateY(0px) translateX(0px); 
    }
}