/* General Styles */
body {
  font-family: lemon;
  line-height: 1.6;
}
.navbar {
  background-color: #cc1b1b;
  font-size: 1.2rem;
}
.navbar-brand, .nav-link {
  color: white !important;

}
.navbar-brand h1 {
  font-size: 1.5rem; /* Adjust the size of the h1 element */
  margin: 0; /* Remove any default margins */
  display: inline-block; /* Keep it inline with the logo */
  vertical-align: middle; /* Align it vertically with the logo */
  color: #fff; /* Optional: Adjust the color if needed */
}
.nav-link a{
  font-size: 3.5rem;
}
.nav-link:hover {
  color: black !important;
}
.nav-link i {
  margin-right: 5px; /* Spacing between icon and text */
  color: white;      /* Icon color matches navbar text */
}
.nav-link:hover i {
  color: black;        /* Icon color on hover */
}

.navbar-logo {
  height: 80px; /* Adjust height to fit */
  margin-right: 10px; /* Space between logo and text */
  vertical-align: middle;
}


/* Banner Styling */
.banner {
  background-image: url(./images/768x400\ banner.jpg);
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.banner h1 {
  font-size: 1.5rem;
  color: white;
}

/* Section Title Styling */
h2 {
  color: black;
}
p {
  color: black;
}

/* Footer Styling */
footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
footer a {
  color: #cc1b1b;
}
footer a:hover {
  color: white;
}


/* category page start*/

/* pizza page start */

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  background-color: white;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

/* Left and Right sections */
.product-main {
  display: flex;
  flex: 1;
}

.product-left,
.product-right {
  flex: 1;
  padding: 15px;
}

.product-left {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-left img {
  width: 100%;
  max-width: 150px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #f8f8f8;
}

.product-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-price {
  color: #28a745;
  font-weight: bold;
}

/* Food type icon */
.food-type {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.food-type img {
  width: 20px;
  height: 20px;
}

/* Bottom section for buttons */
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f8f9fa;
}

.btn-add-to-cart {
  background-color:#cc1b1b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.btn-add-to-cart:hover {
  background-color: #cc1b1b;
}

.btn-quantity {
  width: 35px;
  height: 35px;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  border: none;
  color: #333;
  cursor: pointer;
}

.btn-quantity:hover {
  background-color: #bbb;
}

.quantity {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin: 0 10px;
}

/* Cart Button */
.btn-show-cart {
  background-color:#cc1b1b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50px;
}

.btn-show-cart:hover {
  background-color: #0056b3;
}

/* cart page */

