/* 
 * Blue Marlin Sports Bar - Custom Styles
 * Premium Dark Luxury Theme
 */

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Font Config */
.font-cinzel {
    font-family: 'Cinzel', serif;
}
.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Base Backgrounds */
body {
    background-color: #081015; /* Deep Navy/Black */
    color: #F5F5DC; /* Cream */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #081015;
}
::-webkit-scrollbar-thumb {
    background: #D4AF37; /* Gold */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F5F5DC;
}

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

/* Navbar Glass Effect */
.glass-nav {
    background: rgba(8, 16, 21, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

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

/* Menu Item Hover */
.menu-item:hover h4 {
    color: #D4AF37;
    transition: color 0.3s ease;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

/* Success Message */
#success-message {
    display: none;
}
#success-message.show {
    display: block;
}
