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

/* Custom styles for mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Animation for menu items */
.menu-item:hover {
    transform: translateY(-3px);
}

/* Gallery image hover effect */
.gallery-item img {
    transition: transform 0.3s ease;
}

/* Hero section overlay */
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}