.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.2s;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Add a delay for child elements for a staggered effect */
.animate-on-scroll.is-visible .animate-child { transition-delay: 0.3s; }
.animate-on-scroll.is-visible .animate-child-2 { transition-delay: 0.4s; }

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
    will-change: transform;
}

/* Force hover color for navigation links to ensure visibility */
nav .hidden.md\:flex a:not(.text-gold):hover,
#mobile-menu a:not(.text-gold):hover {
    color: #D97706;
}

/* Ensure text-gold class uses the correct color */
.text-gold {
    color: #D97706 !important;
}