/* Clink Restro Custom Styles */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    border-color: #27272a; /* gray-800 */
}
::-webkit-scrollbar-thumb {
    background: #eab308; /* yellow-500 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ca8a04; /* yellow-600 */
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Neon Glow Effects */
.neon-text-gold {
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.6), 0 0 20px rgba(234, 179, 8, 0.3);
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Hero Animation */
@keyframes slideUpFromOut {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up-out {
    animation: slideUpFromOut 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}
