/* Locations Section */
.locations {
  padding: 4rem 2rem;
  text-align: center;
}

.locations h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.locations .subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.location-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover .card-overlay {
  opacity: 1;
}

.location-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.location-card .card-overlay p {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
  margin: 0;
}
.newari-cuisine {
  grid-column: 1 / -1; /* Span across all columns */
  max-width: 800px; /* Limit width for better readability */
  margin: 0 auto; /* Center the card */
}

/* Dishes Section */
.section-heading {
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 0.5rem auto;
}

.section-subheading {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.dish-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #f2a30f;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dish-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
  text-align: center;
}

.dish-info p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.dish-info ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.dish-info ul li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
  }
}