/* Custom styles that extend Tailwind */
:root {
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA8C2C 100%);
}

body {
    background-color: #05101C;
    color: #e2e8f0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #05101C;
}
::-webkit-scrollbar-thumb {
    background: #112240;
    border: 1px solid #D4AF37;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid items */
.reveal-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.reveal-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* Gold shimmer effect on hover for buttons */
.bg-gold-gradient {
    background: var(--gold-gradient);
    background-size: 200% auto;
    transition: 0.5s;
}

.bg-gold-gradient:hover {
    background-position: right center;
}
