/* Custom Styles for Oak Trail Taphouse */

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

/* Base 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;
}

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

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

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

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

/* Input Placeholder Styling */
input::placeholder,
textarea::placeholder {
    color: #475569;
    opacity: 1;
}

/* Subtle Gradient for Hero Image */
.hero-gradient {
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8) 0%, rgba(10, 15, 28, 0.4) 100%);
}

/* Focus Ring for Accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Image Hover Zoom Effect */
.group img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gold Accent Line Animation */
.hover-line::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.hover-line:hover::after {
    width: 100%;
}
