/* Custom Styles for Newby's Brewhouse */

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

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

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

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

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

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

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

/* Mobile Menu Transition */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Form Focus States */
input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.03);
}

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

/* Subtle Glow Effect */
.glow-gold {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}
