body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0;
    background-color: black;
  }
  
  .container {
    margin-top: 0;
  }
  
  video {
    width: 100%;
    height: auto;
  }
  
  #navbar {
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9); 
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 10px 20px;
    z-index: 1000;
}

#navbar a {
    color: black;
    text-decoration: none;
    padding: 8px 16px; 
    border-radius: 20px;
    transition: background-color 0.3s ease; 
}

#navbar .left a {
    margin-right: 20px;
    font-size: 20px;
    vertical-align: middle;
}

#navbar .right a {
    margin-left: 20px;
    font-size: 20px;
    vertical-align: middle;
}

#navbar .left img {
    height: 40px;
}

#navbar .left a:hover:not(:first-child) {
    background-color: rgba(255, 0, 0, 0.8); 
}

#navbar .right a:hover {
    background-color: rgba(255, 0, 0, 0.8); 
}

#navbar .right {
  margin-right: 40px;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}


/* popup cart */
.addtocart-popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgba(0,0,0,0.8);
}

.addtocart-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
}

.close-button {
  color: red;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.delivery-button,
.pick-up-button,
.dine-in-button {
  display: block;
  width: 30%;
  margin-top: 10px;
  padding: 10px;
  font-size: 20px;
  margin: 10px auto;
}










/* Second Navbar */
#second-navbar {
  background-color: black;
  text-align: center;
  padding: 10px 20px;
  height: 50px; 
}

#second-navbar p {
  color: white;
  font-size: 18px;
  margin: 0;
  display: inline-block;
  text-align: middle;
  margin-top: 1%;
  /* padding-top: 1%; */
}

.start-order-button {
  background-color: red;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  margin-left: 20px;
  margin-top: 1%;
 
}

.start-order-button:hover {
  background-color: darkred;
}











/* banner */
.banner {
  width: 100%;
  /* margin: 20px auto; */
  overflow: hidden;
  position: relative;
  height: 570px;
  /* margin-left: 2%;
  margin-right: 1%; */

}

.banner img {
  width: 100%;
  display: none;
  height: 570px;
  object-fit: cover;
  /* padding-top: 1%; */
}

.banner img:first-child {
  display: block;
}




/* Background video with black overlay */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  z-index: -1;
}

.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Apply black hover */
.background-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); 
}

/* Browse Categories */

.browse-categories {
  font-size: 40px;
  color: white;
  margin-left: 1%;
  margin-right: 1%;
}
.browse-categories h2{
  margin-left: 1.5%;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  margin: 20px 0;
}

.category-item {
  position: relative;
  margin: 20px;
  flex: 1; 
  max-width: 450px; 
  overflow: hidden;
}

.category-item img {
  width: 100%; 
  height: 300px; 
  object-fit: cover; 
  display: block;
  transition: transform 0.3s ease;
}

.category-item:hover img {
  transform: scale(1.1); 
}

.image-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 5px 10px;
  border-radius: 5px;
}

.category-item {
  border: 2px solid transparent; /* Transparent border by default */
}

/* cricket banner */
.cricket {
  text-align: center;
  margin-top: 20px; 
  /* background-color: white; */
}

.cricket img {
width: 50%; 
transition: transform 0.3s ease; 
}
.cricket img:hover {
  animation: shake 1s infinite; 
}
@keyframes shake {
  0% { transform: rotate(2deg); }
  20% { transform: rotate(-3deg); }
  40% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  80% { transform: rotate(5deg); }
  100% { transform: rotate(0); }
}







/* ipl */
.ipl {
  max-width: 1950px;
  margin: 20px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: aliceblue;
  /* background-image: url('ipl2.jpg');
  background-size: cover;
  background-position: center; */
}
.heading {
  font-size: 40px;
  color: black;
  /* font-family: Arial, Helvetica, sans-serif; */
  /* margin-bottom: 20px; */
  width: 100%;
}
.foodcard {
  width: calc(25% - 20px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  display: inline-block;
}
.foodcard img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  height: 400px; 
  object-fit: cover;
}
.foodname {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.foodprice {
  font-size: 24px; 
  color: red; 
  margin-bottom: 5px;
}
.serves {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}
.fooddes {
  font-size: 14px;
  margin-bottom: 10px;
}
.add {
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.add:hover {
  background-color: #cc0000;
}









/*banner video */
/* .banner-video {
  width: 100%;
  height: 90vh;
  margin-top: 20px;
 

}

.banner-video video {
  width: 1900px;
 margin-left: 3%;
} */



/* explore menu */
.menuimg {
  position: relative;
  width: 100%;
  height: 600px; 
  overflow: hidden;
  /* margin-top: 5%; */
}

.menuimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); 
}

.menuimg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 5%;
}


/* peri peri chicken */

.chicken {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 20px;
  background-color: white;
  padding: 20px;
  align-items: center;
  
}

.chicken h1 {
  font-size: 60px;
}

.image-row {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  gap: 20px;
}

.box {
  width: 500px; /* Adjusted width */
  position: relative;
}

.box img {
  width: 100%;
  height: auto;
  display: block;
}

.box .details {
  padding-top: 10px;
}

.details button {
  background-color: red;
  color: white;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.details button:hover {
  background-color: darkred;
}










/* Style for Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 750px;
  position: relative;
  max-height: 80%; 
  overflow-y: auto; 
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 40px;
  cursor: pointer;
}

.options {
  margin-bottom: 20px;
}

.option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.option img {
  width: 90px;
  height: 70px;
  margin-right: 10px;
}

.option-details {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding-left: 5%;
  font-size: 20px;
}

.option-name {
  margin-right: 10px;
}

.option-price {
  /* margin-left: 2%;  */
  margin-right: 10px;
  color: red;
  font-weight: bolder;
}

.checkbox {
  /* margin-left: 2%;  */

  width: 20px;
  height: 20px;
  border: 1px solid red;
  cursor: pointer;
}

.order-now {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 0 auto; 
  display: block; 
}

.order-now:hover {
  background-color: darkred;
}
.checkbox.checked {
  background-color: red; 
}



















/* chicken rolls */
.rolls {
  margin-top: -40px;
  background-color: white;
  
}



.rollrow {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.rollbox {
  width: 500px; 
  position: relative;
  margin-left: 2%;
  margin-right: 2%;
  overflow: hidden;
}

.rollbox img {
  max-width: 100%;
  height: auto;
  /* transition: transform 0.3s ease; */
}
/* .rollbox:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
} */
.rolls h1{
  font-size: 60px;
  text-align: center;
  padding-top: 3%;
  
}




.burger {
  display: flex;
  align-items: center;
  margin-top: 20px;
  background-color: white;
  margin-top: -20px;
  padding-right: 2%;
  padding-left: 3%;
  padding-top: 2%;
}

.burger-text {
  font-weight: bold;
  font-size: 90px; /* Adjust size as needed */
  margin-right: 3%;

}

.burger-image {
  width: 50%;
  animation: moveUpDown 1.5s ease-in-out infinite alternate; 
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0); /* Start from current position */
  }
  100% {
    transform: translateY(-40px); 
  }
}



.chizza {
  width: 100%;
  margin: 0 auto;
  background-color: white;
}

.chizza video {
  width: 100%;
  height: 1000px; /* Adjust the height as needed */
}







/* dessert */
/* .banner-video {
  display: none; 
} */

.dessert-container {
  background-color: white;
  padding: 20px;
}

.dessert-heading {
  text-align: center;
  font-size: 40px;
  color: black;
  /* font-family: Arial, Helvetica, sans-serif; */
  /* margin-bottom: 20px; */
  width: 100%;
}

.dessert-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dessert-card {
  width: calc(25% - 20px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  display: inline-block;
}

.dessert-card img {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.dessert-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}







/* footer */
footer {
  background-color: #333;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

footer img {
  height: 30px;
  margin-right: 10px;
}

.column {
  flex: 1;
  margin-bottom: 20px;
}

.column h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
}

.column ul {
  list-style-type: none;
  padding: 0;
}

.column ul li {
  margin-bottom: 8px;
}

.column ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.column ul li a:hover {
  text-decoration: underline;
}

.store-icons img {
  height: 70px;
  /* margin-right: 10px; */
}
