/* Custom styles that can't be achieved with Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;600&display=swap');

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Animation for menu items */
.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
}
.price-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #000000;
  color: #EEA316;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #EEA316;
    border-radius: 4px;
}

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