
body {
  font-family: 'Mukta', 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

  .nav-tabs .nav-link {
    color: black;
  }

  .nav-tabs .nav-link.active {
    color: #ffc107; /* Bootstrap's yellow */
    font-weight: bold;
  }

  .nav-tabs .nav-link:hover {
    color: #ffc107;
  }

.menu-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
  padding: 6px 0;
}

.menu-item .price {
  font-weight: bold;
}

.dark-section {
  background-color: #f5f5f5;   /* soft dark gray */
  color:  #1c1c1c;          /* off-white for better contrast */
}

.dark-section h2,
.dark-section h4,
.dark-section p,
.dark-section span {
  color: #1c1c1c;
}


.hero {
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: top center;
  height: 100vh;
  position: relative;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero .content {
  position: relative;
  z-index: 2;
}

h1, h2 {
  font-weight: bold;
}
