@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --red: #ff3838;
  --orange: #f96d00;
}

* {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
}

*::selection {
  background: var(--red);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  /* background: #f7f7f7; */
  /* background: #070707; */
  background: #101010;
}

section {
  padding: 2rem;
  margin: 0 auto;
  max-width: 2000px;
}

.heading {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
  color: #999;
}

.heading span {
  color: var(--orange);
}

.btn {
  display: inline-block;
  padding: .8rem 3rem;
  /* border: .2rem solid var(--red); */
  border: .2rem solid var(--orange);
  color: var(--orange);
  cursor: pointer;
  font-size: 1.7rem;
  border-radius: .5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 1rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  /* background: var(--red); */
  background: var(--orange);
  transition: .3s linear;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
  left: 0;
}

.btn:hover {
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* background: #fff; */
  /* background: #070707; */
  background: #101010;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-decoration: none;
}

header .logo {
  font-size: 3rem;
  /* You can adjust the size as needed */
  font-weight: bold;
  color: #333;
  /* Change color if desired */
  ;
}

header .logo img {
  width: 320px;
  /* Adjust the width as needed */
  height: auto;
  /* Automatically adjust the height while maintaining aspect ratio */
}


header .logo i {
  padding-right: .5rem;
  color: var(--red);
  /* If you're using a CSS variable for red color */
}

header .navbar a {
  font-size: 2rem;
  margin-left: 2rem;
  /* color: #070707; */
  color: #fff;
  text-decoration: none;
}

header .navbar a:hover {
  color: var(--orange);
}

#menu-bar {
  font-size: 3rem;
  cursor: pointer;
  color: #666;
  border: .1rem solid #666;
  border-radius: .3rem;
  padding: .5rem 1.5rem;
  display: none;
}

.home-container {
  /* background: url(../resources/images/home-bg.jpg) no-repeat;
  background: url(../resources/images/home_img_Biriyani.webp) no-repeat;
  background-size: cover;
  background-position: center;*/
}

.home {
  /* display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 80vh;
  align-items: center;
  margin-left: 0;
  width: 30%;*/
}

.home .content {
  /* background: transparent;
  border-radius: 0.5rem;
  flex: 1 1 40rem;

  padding: 30px */
}

/* .home .image {
  flex: 1 1 40rem;
}

.home .image img {
  width: 140%;
  padding: 1rem;
} */

/* @keyframes float{
  0%, 100%{
    transform: translateY(0rem);
  }
  50%{
    transform: translateY(3rem);
  }
} */


.home .content h3 {
  /*font-size: 4rem;
  color: var(--orange);*/
}

.home .content span {
  /*color: var(--red)*/
}

.home .content p {
  /*font-size: 1.7rem;
  color: white;
  padding: 1rem 0;
  line-height: 1.8;*/
}


/*about section start*/
.about-container {
  background: url(../resources/images/dark-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 80vh;
  align-items: center;
}

.about .content {
  flex: 1 1 40rem;
}

.about .image {
  flex: 1 1 40rem;
}

.about .image img {
  width: 100%;
  padding: 1rem;
  /* animation:float 3s linear infinite; */
  animation: animate 3s linear infinite;
}

@keyframes animate {
  0% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.about .content h3 {
  font-size: 5rem;
  color: #f96d00;
}

.about .content p {
  font-size: 1.7rem;
  color: white;
  padding: 1rem 0;
  line-height: 1.8;
}

/*about section ends*/


.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 35rem);
  justify-content: center;
  gap: 1.5rem;
}

.menu .box-container .box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  border: .1rem solid rgba(0, 0, 0, .3);
  cursor: pointer;
  border-radius: .5rem;
  background-color: #fff;
}

.menu .box-container .box .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  /* top:-100%;  */
  bottom: -100%;
  left: 0;
}

.menu .box-container .box .content {
  text-align: center;
  background: #fff;
  padding: 3.5rem 2rem;
}

.menu .box-container .box .content img {
  height: 5rem;
  margin-bottom: 1rem;
}

.menu .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #333;
  padding: .5rem 0;
}

.menu .box-container .box .content p {
  font-size: 1.5rem;
  color: #666;
  padding-top: .5rem;
  line-height: 1.8;
}

.menu .box-container .box:hover .image {
  /* top:0; */
  bottom: 0;
}

.menu .box-container .box:hover .content {
  transform: translateY(100%);
}

.specials p {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 40rem;
  justify-content: center;
  font-size: 1.4rem;
  color: #666;
  padding: 1rem 0;
  line-height: 1.8;
}

.specials .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 35rem);
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.specials .box-container .box {
  cursor: pointer;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  border: .1rem solid rgba(0, 0, 0, .3);
  border-radius: .5rem;
  text-align: center;
  position: relative;
}

.specials .box-container .box img {
  height: 20rem;
  object-fit: cover;
  width: 100%;
  border-radius: .5rem;
}

.specials .box-container .box .price {
  position: absolute;
  top: 3rem;
  left: 3rem;
  background: var(--orange);
  color: #fff;
  font-size: 2rem;
  padding: .5rem 1rem;
  border-radius: .5rem;
}

.specials .box-container .box h3 {
  color: #333;
  font-size: 2.5rem;
  padding-top: 1rem;
}

.specials .box-container .box .stars i {
  color: gold;
  font-size: 1.7rem;
  padding: 1rem .1rem;
}

.specials .box-container .box:hover {
  background-color: #222;
}

.specials .box-container .box:hover h3 {
  color: #fff;
}

.everyday p {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 40rem;
  justify-content: center;
  font-size: 1.4rem;
  color: #666;
  padding: 1rem 0;
  line-height: 1.8;
}

.everyday .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 35rem);
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.everyday .box-container .box {
  cursor: pointer;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  border: .1rem solid rgba(0, 0, 0, .3);
  border-radius: .5rem;
  text-align: center;
  position: relative;
}

.everyday .box-container .box img {
  height: 20rem;
  object-fit: cover;
  width: 100%;
  border-radius: .5rem;
}

.everyday .box-container .box .price {
  position: absolute;
  top: 3rem;
  left: 3rem;
  background: var(--orange);
  color: #fff;
  font-size: 2rem;
  padding: .5rem 1rem;
  border-radius: .5rem;
}

.everyday .box-container .box h3 {
  color: #333;
  font-size: 2.5rem;
  padding-top: 1rem;
}

.everyday .box-container .box .stars i {
  color: gold;
  font-size: 1.7rem;
  padding: 1rem .1rem;
}

.everyday .box-container .box:hover {
  background-color: #222;
}

.everyday .box-container .box:hover h3 {
  color: #fff;
}

.footer {
  background: #101010;
  text-align: center;
}

section {
  padding: 3rem 2rem;
}

.footer section .share {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer section .credit {
  color: white;
  font-weight: normal;
  font-size: 2rem;
  margin-top: 3rem;
}

.footer section .credit span {
  color: var(--red);
}


#scroll-top {
  position: fixed;
  bottom: -10rem;
  right: 2rem;
  font-size: 3rem;
  height: 4.5rem;
  width: 5rem;
  line-height: 4.5rem;
  text-align: center;
  background: var(--red);
  color: #fff;
  border-radius: .5rem;
  transition: .5s linear;
  z-index: 1000;
}

#scroll-top.active {
  bottom: 2rem;
}

/* Contact section styles */
#contact {
  background: #101010;
  padding: 3rem 2rem;
  font-size: 1.1rem;
  color: #f7f7f7;
}

#contact .container {
  max-width: 1000px;
  margin: 0 auto;
}

#contact .section-title {
  text-align: center;
  margin-bottom: 4rem;
}

#contact .section-title h1 {
  font-size: 3.5rem;
  color: #f96d00;
  margin-bottom: 2.5rem;
}

#contact .section-title h2 {
  text-align: left;
  font-size: 2.5rem;
  color: var(--orange);
}

#contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

/* Adjust the position of the map and info section */
#contact .col-lg-6 {
  flex: 1;
}


#contact .info {
  text-align: center;
}

#contact .info h3 {
  font-size: 3rem;
  margin-bottom: 0.25rem;
  color: var(--orange);
}

#contact .info p {
  font-size: 2rem;
  line-height: 2.1;
  margin-bottom: 0.75rem;
}

#contact .info i {
  margin-right: 1rem;
  font-size: 1rem;
  color: var(--red);
}

#contact .info .phone p {
  margin-bottom: 1;
}

.contact iframe {
  width: 100%;
  height: 320px;
  /* Set a fixed height for the map */
}

#contact .col-lg-6 {
  width: 50%;
  /* Set the width to 50% to center the map */
}

#contact .info {
  text-align: center;
}




/* Media queries */

/* Adjust the position and size of the map and text for desktop view */
@media (min-width: 992px) {
  #contact .col-lg-6.order-lg-1 {
    padding-left: 10%;
    /* Add left padding to the map container */
    width: 45%;
    /* Adjust the width of the map container */
  }

  #contact .col-lg-6.order-lg-2 {
    width: 45%;
    /* Adjust the width of the text container */
  }

  .contact iframe {
    width: calc(100% - 4rem);
    /* Calculate the width of the map with added padding */
    margin-top: 1rem;
    /* Add some top margin to separate the map from the other sections */
  }
}

/* Adjust the position and size of the map and text for mobile view */
@media (max-width: 768px) {
  #contact .row {
    flex-direction: column;
    /* Stack elements vertically */
  }

  .contact iframe {
    height: 50vh;
    /* Set a fixed height for the map */
    min-height: 300px;
    /* Set a minimum height */
    margin: 0 auto;
    /* Center the map horizontally */
    padding: 0 2rem;
    /* Add padding to both sides */
  }

  #contact .col-lg-6 {
    width: 100%;
    /* Set full width for both columns */
  }

  #contact .info {
    text-align: center;
    padding-top: 3rem;
    /* Add some padding */
  }
}



@media(max-width:991px) {

  html {
    font-size: 55%;
  }

}

@media(max-width:768px) {

  #menu-bar {
    display: initial !important;
  }

  header .navbar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #f7f7f7 !important;
    border-top: .1rem solid rgba(0, 0, 0, .1) !important;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0) !important;
  }

  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
  }

  header .navbar a {
    margin: 1.5rem !important;
    padding: 1.5rem !important;
    display: block !important;
    border: .2rem solid rgba(0, 0, 0, .1) !important;
    border-left: .5rem solid var(--red) !important;
    background: #fff !important;
    color: #101010 !important;
  }

  .home .content h3 {
    font-size: 3.5rem;
  }

  .home .content p {
    display: none;
  }

  .home .content .btn {
    padding: .5rem 1.5rem;
  }

  .about .content {
    text-align: center;
  }

  .specials p {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
  }


}

@media(max-width:450px) {

  html {
    font-size: 50%;
  }

  .order .row form .inputBox input {
    width: 100%;
  }

  .heading {
    font-size: 3rem;
  }


}

/*.carousel-item {
  position: relative;
  display: inline-block; /* Ensure it's treated as a block element */
/*}

/*.carousel-item p {
  position: absolute;
  top: 70%;
  left: 0;
  transform: translate(0, -50%);
  margin-left: 10px; /* Adjust as needed */
/*text-align: center; /* Center the text horizontally */
/*background-color: rgba(255, 255, 255, 0.7); /* Optional: Add a background color for better visibility */
/*padding: 5px 10px; /* Optional: Add padding for better visibility */
/*}

.carousel-item img {
  display: block; /* Ensure the image doesn't have any inline white space */
/*width: 100%; /* Make sure image fills its container */
/*height: auto; /* Maintain aspect ratio */
/*}