/* Custom Styles for NYC Cafe & Juice Bar */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f1c18;
}
::-webkit-scrollbar-thumb {
    background: #2d4a3f;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Gold Gradient Text Utility */
.text-gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f3d578 50%, #b4901f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image Hover Effects */
img {
    transition: transform 0.5s ease;
}
