/* Golden Hero Title Styling */
.hero-title {
    font-size: 56px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
    position: relative !important;
    background: linear-gradient(135deg, #FFD700 0%, #D4A574 30%, #FFA500 60%, #FFB347 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 
                 0 0 20px rgba(212, 165, 116, 0.4),
                 0 0 40px rgba(255, 215, 0, 0.2) !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8)) !important;
    animation: goldShimmer 4s ease-in-out infinite !important;
    border: none !important;
    padding: 0 !important;
    letter-spacing: 1px !important;
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .hero-title {
        color: #FFD700 !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6),
                     0 0 20px rgba(212, 165, 116, 0.6),
                     0 0 40px rgba(255, 215, 0, 0.4) !important;
    }
}

/* Enhanced glow effect on hover */
.hero-title:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)) !important;
    animation-duration: 2s !important;
}
