/* ===================================
   Gold Shine Animation Effect
   =================================== */

.gold-shine,
.gradient-text {
    background: linear-gradient(to right, #D4A63A, #F4D076, #D4A63A, #8E6E22) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% auto !important;
    animation: goldShine 4s linear infinite !important;
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

.hero-title {
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 30%, #D4A63A 50%, #F4D076 60%, #FFFFFF 70%, #FFFFFF 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% auto !important;
    animation: goldShine 5s linear infinite !important;
}