/* Custom Styles for The Lounge */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a0d14;
    color: #f3f4f6;
}

/* Gold Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(to right, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a0d14;
}

::-webkit-scrollbar-thumb {
    background: #4a1c33;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #702f4f;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for images */
img {
    transition: transform 0.5s ease;
}

.group:hover img {
    transform: scale(1.05);
}
