Spaces:
Running
Running
File size: 567 Bytes
df67a94 259212b df67a94 259212b df67a94 259212b df67a94 259212b df67a94 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /* 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));
} |