/* font css starts */
.kisamosHeading {
  font-family: "Cinzel", serif; /* or 'GFS Didot' */
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.menu-description {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.sideOrders li {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
/* font css ends */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f2f2;
  color: #333;
}
header {
  background-color: #c62828;
  padding: 30px 20px;
  text-align: center;
  color: white;
}
header h1 {
  margin: 0;
  font-size: 2.8em;
}
header p {
  margin-top: 5px;
  font-size: 1.2em;
}
.menu-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.menu-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block;
}

.menu-item.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: none;
}

.menu-item:hover {
  transform: scale(1.02);
}
.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.menu-content {
  padding: 15px 20px;
}
.menu-content h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.3em;
  color: #c62828;
}
.menu-content p {
  margin: 0 0 10px;
}
.price {
  font-weight: bold;
  font-size: 1.1em;
}
.category-heading {
  width: 100%;
  text-align: center;
  font-size: 2em;
  color: #c62828;
  margin: 40px 0 20px;
  grid-column: 1 / -1;
  position: relative;
  display: none;
}
.category-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c62828;
  margin: 10px auto 0;
  border-radius: 3px;
}
.category-heading.show {
  display: block;
}
#topBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: #c62828;
  color: white;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
#topBtn:hover {
  background-color: #a31515;
}
html {
  scroll-behavior: smooth;
}
footer {
  background-color: #f4f4f4;
  padding: 20px;
  font-size: 0.95em;
  text-align: center;
  color: #333;
}

.footer-content p {
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 0.85em;
  color: #666;
}

.filters-wrapper {
  width: 100%;
  text-align: center;
}

.toggle-filters {
  display: none;
  background-color: #c62828;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.filters button {
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border: 2px solid #004466;
  background-color: transparent;
  color: #004466;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.filters button:hover {
  background-color: #004466;
  color: white;
}

.filters button.active {
  background-color: #004466;
  color: white;
  font-weight: 600;
}
