/* Custom Styles for Tempoo */

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b5952f;
}

/* Scroll Animations */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold Shimmer Utility */
.gold-shimmer {
    position: relative;
    overflow: hidden;
}
.gold-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    100% { left: 200%; }
}

/* Additional Utilities to match Tailwind config */
.tracking-ultra-wide {
    letter-spacing: 0.2em;
}
.tracking-mega-wide {
    letter-spacing: 0.3em;
}

/* Animation Delays */
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }
