Spaces:
Running
Running
File size: 974 Bytes
26c11c6 2a211fb 26c11c6 2a211fb 26c11c6 2a211fb 26c11c6 2a211fb 26c11c6 2a211fb 26c11c6 | 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | /* Animation for hover effects */
.transition-transform {
transition-property: transform;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 300ms;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #d97706;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #b45309;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Navigation active state */
nav a.active {
color: #d97706;
font-weight: 600;
}
/* Review card shadow */
.review-card {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Menu item hover effect */
.menu-item:hover {
transform: translateY(-5px);
}
/* Reservation form focus */
input:focus, select:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.5);
} |