html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: #fffdf9;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Layout container */
.menu-container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Section wrapper */
.menu-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px dashed #e0e0e0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.menu-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-section:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image styling */
.menu-image {
  flex: 1 1 300px;
  max-width: 45%;
  margin: 10px;
}

.menu-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Menu item block */
.menu-items {
  flex: 1 1 300px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}

/* Typography */
.menu-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #c0392b;
}

.menu-item {
  margin-bottom: 1.5rem;
}

.item-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.item-name {
  font-weight: 600;
}

.item-price {
  font-weight: bold;
  color: #e67e22;
}

.item-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .menu-section {
    flex-direction: column !important;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .menu-image {
    display: none;
  }

  .menu-items {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    max-width: 100%;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #333;
  color: white;
  font-size: 0.9rem;
}

footer a {
  color: #e67e22;
  margin: 0 10px;
  text-decoration: none;
}
