/* Smooth scrolling adjustments */
body {
    background-color: #FAF7F2;
    color: #3A2E24;
}

/* Hero background overlay */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?q=80&w=2047&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    background: linear-gradient(to bottom, rgba(58, 46, 36, 0.4), rgba(58, 46, 36, 0.7));
}

/* Hide scrollbar for gallery but keep functionality */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Category Button Active State */
.cat-btn.active {
    background-color: #8B5E3C;
    color: white;
    border-color: #8B5E3C;
}

/* Mobile menu slide animation */
#mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    visibility: hidden;
}
#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}
