/* Custom Styles for Lazy D Cajun & Q */

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #050a07;
    color: #f4f1ea;
    font-family: 'Lato', sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

::-webkit-scrollbar-track {
    background: #0f2e20;
}

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

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

/* Navbar styles */
#navbar.scrolled {
    background-color: rgba(5, 10, 7, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Gold gradient text */
.text-transparent.bg-clip-text.bg-gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f3cf55 50%, #b4901f 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu.opacity-0 {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#mobile-menu.opacity-100 {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Button hover effects */
button, a {
    transition: all 0.3s ease;
}

/* Input focus styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Image hover effects */
img {
    transition: transform 0.5s ease;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* Tablet and desktop */
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 2rem;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    h1 {
        font-size: 5rem;
    }
    
    h2 {
        font-size: 3.5rem;
    }
    
    h3 {
        font-size: 2.5rem;
    }
}
