/* Custom Styles for Lux Lounge */

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #E95D3A;
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .text-white {
    color: #1F2937 !important;
}

.nav-scrolled .hover\:text-coral-400:hover {
    color: #FF6347 !important;
}

.nav-scrolled .mobile-menu-btn path {
    stroke: #1F2937;
}

/* Image Hover Zoom Fix */
img {
    max-width: 100%;
    height: auto;
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}
