/* Custom styles for Boss Hawg's Bar & Grill */

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

body {
    font-family: 'Manrope', sans-serif;
}

.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.font-manrope {
    font-family: 'Manrope', sans-serif;
}

/* Navbar scroll effect */
#navbar.scrolled {
    background: rgba(26, 20, 16, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile menu animations */
.mobile-link {
    position: relative;
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c6a18c;
    transition: width 0.3s ease;
}

.mobile-link:hover::after {
    width: 100%;
}

/* Hero text animation */
#hero h1 {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

#hero p {
    animation: fadeUp 1s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

#hero .flex-wrap {
    animation: fadeUp 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Menu hover effects */
#menu .border-b {
    transition: border-color 0.3s ease;
}

#menu .border-b:hover {
    border-color: #b88468;
}

#menu h4 {
    transition: color 0.3s ease;
}

#menu .border-b:hover h4 {
    color: #b88468;
}

/* Gallery hover */
.group img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* CTA section parallax feel */
.cta-section {
    background-attachment: fixed;
}

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

::-webkit-scrollbar-track {
    background: #1a1410;
}

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

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

/* Selection color */
::selection {
    background: #b88468;
    color: #fff;
}

/* Mobile menu overlay */
#mobile-menu {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle pattern overlay for dark sections */
.bg-sand-950::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
