﻿/* ===================================================================
   HERO BADGE - ENHANCED VISIBILITY & CONTRAST
   With bright yellow shine effect
   =================================================================== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgb(78 214 22 / 25%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* BRIGHT YELLOW Shine Effect - More Contrast */
.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 30%,
        rgba(255, 223, 0, 0.5) 45%,
        rgba(255, 235, 59, 0.7) 50%,
        rgba(255, 223, 0, 0.5) 55%,
        transparent 70%,
        transparent 100%
    );
    animation: badgeShine 3s ease-in-out infinite;
}

.hero-badge i {
    color: #fbbf24;
    text-shadow: 
        0 0 10px rgba(251, 191, 36, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
    animation: starTwinkle 2s ease-in-out infinite;
}

/* Badge Animations */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.15),
            inset 0 1px 1px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.2),
            inset 0 1px 1px rgba(255, 255, 255, 0.4);
    }
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15);
        filter: brightness(1.3);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .hero-badge {
        font-size: 13px;
        padding: 0.5rem 1.25rem;
    }
}
