

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Safari */
  -ms-text-size-adjust: 100%;     /* IE */
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  background-color: #111;
   overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}







.menu-cards-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
}



.back-button {
  position: fixed;
  top: 30px;
  left: 40px;
  z-index: 100;
  background: #000;
  color: #fff;
  border: 1px solid #bfa133;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.back-button:hover {
  background: #bfa133;
  color: #000;
  box-shadow: 0 0 12px rgba(191,161,51,0.5);
}


/* Left side: Menu (dominant) */
.menu-section {
  flex: 2;
  padding: 60px 60px;
  background: url('images/Menu back/black.png') center/cover no-repeat;
  overflow-y: auto;
}
.menu-section h2 {
  font-size: 2.2rem;
  margin: 40px 0 20px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
}
.menu-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  columns: 2; /* two-column layout */
  column-gap: 60px;
}
.menu-section li {
  break-inside: avoid;
  color: #c2c2c2;
  margin: 16px 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
.menu-section li strong {
  color: #ffffff;
  font-weight: 600;
}
.menu-section li em {
  font-size: 0.85rem;
  color: #534204;
}





/* Right side: Cards (smaller, vertical stack) */
.cards-section {
  flex: 1;
  padding: 60px 40px;
  background: #000000;
  overflow-y: auto;
}
.culinary-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Card styling */
.culinary-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 30px rgba(68, 54, 18, 0.163);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 320px;
  margin: 0 auto;
}

.culinary-card .card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(1);
  transition: filter 0.4s ease;
}
.culinary-card:hover .card-image img {
  filter: brightness(1.2);
}
.culinary-card .card-text {
  padding: 20px;
  text-align: center;
}
.culinary-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}
.culinary-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.4;
}
.hover-btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hover-btn:hover {

  color: #ffffff;
  box-shadow: 0 0 15px rgba(191,161,51,0.6);
}




@media (max-width: 768px) {
  .cards-section {
    display: none;
  }
}

@media (max-width: 480px) {
  .cards-section {
    display: none;
  }
}

