/* Custom styles for refined control beyond Tailwind */

:root {
    --gold-primary: #D4AF37;
    --gold-dark: #B8860B;
    --gold-light: #F9F6EE;
}

/* Sembunyikan scrollbar namun tetap bisa di-scroll secara horizontal */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    scroll-behavior: smooth;
}

/* Animasi masuk saat konten dimuat */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

article { animation: fadeInUp 0.6s ease-out forwards; }

/* Custom Gold Button & Borders */
.border-gold { border-color: var(--gold-primary); }
.text-gold { color: var(--gold-primary); }
.bg-gold { background-color: var(--gold-primary); }
.bg-gold:hover { background-color: var(--gold-dark); }

.hero-overlay {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

/* Animasi eksklusif untuk Hero Section */
@keyframes exclusiveReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.animate-hero-title {
    animation: exclusiveReveal 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-hero-sub {
    opacity: 0;
    animation: exclusiveReveal 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.animate-hero-btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

/* Efek Gold Metallic Memancar */
.gold-glow {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text; /* Menambahkan properti standar */
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@keyframes goldRadiate {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    }
}

.animate-radiate-gold {
    animation: goldRadiate 3s infinite ease-in-out;
}

/* Animasi Kilauan Emas Bergerak (Gold Sweep) */
@keyframes goldSweep {
    0% { background-position: -200% center; } /* Mulai dari kiri */
    100% { background-position: 200% center; } /* Bergerak ke kanan */
}

.gold-shimmer {
    background: linear-gradient(90deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: goldSweep 6s linear infinite;
}