
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', serif;
}

.hidden {
  display: none !important;
}

.animate-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f8f8f8;
}
::-webkit-scrollbar-thumb {
  background: #b91c1c;
  border-radius: 10px;
  border: 3px solid #f8f8f8;
}
::-webkit-scrollbar-thumb:hover {
  background: #991b1b;
}

/* Page transitions */
.page-section {
  transition: opacity 0.5s ease;
}

/* Menu Item Hover Animation */
#menu-items-grid > div {
  border-left: 0 solid transparent;
  transition: all 0.3s ease;
}
#menu-items-grid > div:hover {
  border-left: 4px solid #b91c1c;
  padding-left: 1.5rem;
}

/* Recipe Card Glow */
.group:hover img {
  filter: brightness(1.05);
}

/* Section Title Underline */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #b91c1c;
  margin: 1.5rem auto;
  border-radius: 2px;
}
