
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  ---main-color: #4b4d57;
  --black-color: #0e0e0e;
  --orange:#f98426;
  --border: 0.1rem solid rgba(255, 255, 255, 0.4);
}
* {

  font-family: "Amiri", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease;
}
/* base html codes */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}
body {
  background-color: var(---main-color);
  overflow-x: hidden;
}
section {
    padding: 3.5rem 7%;
  }

a {
  color: var(--black-color);
  text-decoration: none;
}
.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 2rem 3.75rem;
  border-radius: 30rem;
  font-size: 1.7rem;
  color: #fff;
  background-color: var(--black-color);
  cursor: pointer;
  opacity: 0.9;
  transition: all .5s;
 
}

.btn:hover {
  opacity: 0.9;
  background-color: var(--orange);
  transform: rotate(360deg);
}
.heading {
  color: #fff;
  text-transform: uppercase;
  font-size: 4rem;
  margin-bottom: 3.5rem;
  border-bottom: 0.1rem solid #fff;
  
}
.heading span {
  color: var(--orange);
  text-transform: uppercase;
}
/* header start */

.header .logo img {
  height: 10rem;
  width: 16rem;
}

.header .navbar  {
  flex-grow: 10;
}
.header {
  background-color: #fff;
  background-color: #ffffff96;
  backdrop-filter: blur(5px);  
  display: flex; 
  align-items: center;
  justify-content:space-between;
  padding: 0 7%;
  margin: 2rem 7%;
  border-radius: 30rem;
  box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 80%;
  z-index: 1000;
}

.header .navbar a {
  margin: 0 1.3rem;
  font-size: 2.3rem;
  color: var(--black-color);
  border-bottom: 0.1rem solid transparent;
  transition:all 0.3s;
}
.header .navbar .active,
.header .navbar a:hover {
  border-color: var(---main-color);
  padding-bottom: 0.5rem;
  color: var(--black-color);
}
.header .navbar a:hover {
color: var(--orange);
border-color:var(--orange);
}
.header .buttons button {
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
  background-color: transparent;
}

.header #menu-btn {
  display: none;
}
.nav-link{
  font-size: 2.5rem !important;
}
/* header end */

/* home start */

.home {
  min-height: 100vh;
  background: url(../images/home.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -14.5rem;
  display: flex;
  align-items: center;
  padding-top: 15rem;
}

.slider .overlay
{
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
}
.home .content {
  max-width: 60rem;
}
.home .content h3 {
  font-size: 6rem;
  color: #fff;
}
.home .content p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}
/* home end */

/* menu start */
.menu .box-container .box:hover  img {
  transform: scale(1.1);
  cursor: pointer;
}
.menu, .about{
  margin: 10rem 0;
}
.hero{
  padding: 10rem 0;
}
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box {
  padding: 2rem;
  background-color: #fff;
  border-radius: 3rem;
  background-color: #fff;
  min-height: 60rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.menu .box-container .box img {
  width: 100%;
  object-fit: cover;
}

.menu .box-container .box h3 {
  font-size: 3rem;
  padding: 1rem 0;
}

.menu .box-container .box .price {
  font-size: 2.5rem;
  padding: 0.5rem 0;
}
.menu .box-container .box .price span {
  font-size: 1.5rem;
  text-decoration: line-through;
  font-weight: 300;

}

/* menu end */
/* product start */
.products .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.products .box-container .box {
  text-align: center;
  background-color: #fff;
  position: relative;
  border-radius: 3rem;
  height: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;

}
.products .box-container .box .box-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.products .box-container .box .box-head .name {
  font-size: 4rem;
  font-weight: bold;
  text-align: start;
  overflow-wrap: anywhere;
}

.products .box-container .dark-bg .box-head .name,
.products .box-container .dark-bg .box-head .title {
  color: #fff;
 
}
.products .box-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  border-radius: 3rem;
}
.products .box-container .dark-bg img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: unset;
}
.products .box-container .dark-bg:hover {
  transform: scale(0.95);
  cursor: pointer;
}

.products .box-container .box-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.products .box-container .box-bottom .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.products .box-container .box-bottom .info .price {
  font-size: 3rem;
}
.products .box-container .box-bottom .info .amount {
  font-size: 1.4rem;
}

.products .box-container .dark-bg .box-bottom .info .price,
.products .box-container .dark-bg .box-bottom .info .amount {
  color: #fff;
}
.menu .box-container .box .info{
  font-size: 2rem;
}
.products .box-container .box-bottom .product-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 6.5rem;
  height: 6.5rem;
  border: 0.2rem solid white;
  transition: all .3s;
}
.products .box-container .box-bottom .product-btn a i {
  font-size: 2rem;
  color: white;
  
}
.products .box-container .box-bottom .product-btn a:hover{
  transform: rotate(360deg);
}
/* products end */
/* about start */

.about .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.about .row .image {
  flex: 1 1 45rem;
}
.about .row img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 45rem;
}

.about .row .content h3 {
  font-size: 3rem;
  color: #fff;
}

.about .row .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}
/* about end */
/* Gallery section */
.gallery-img{
  display: flex ;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
 
}
.gallery-img .column{
  width: 30%;
  display: flex ;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.meal{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 3rem;
}
.meal img{
  width: 100%;
  transition: all 0.5s;
}
.meal-layer{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.502);
  position: absolute;
  top: 100%;
  transition: top 0.5s;
}
.meal h1{
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  padding: 10px;
}
.meal h2{
  color: #a1a9b3;
  font-size: 1.2rem;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 200;
  text-align: center;
}
.meal:hover .meal-layer{
  top: 0;
  cursor: pointer;
}
.meal:hover img{
  transform: scale(1.1 , 1.1);
}


/* contact start */
.contact .row {
  display: flex;
  background-color: var(--black-color);
  flex-wrap: wrap;
  border-radius: 3rem;
  gap: 1rem;
}
.contact .row .map {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}
.contact .row form {
  flex: 1 1 45rem;
  padding: 5rem 2rem;
  text-align: center;
}
.contact .row form h3 {
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #fff;
}

.contact .row form .inputBox {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  border: var(--border);
}
.contact .row form .inputBox i {
  color: #fff;
  font-size: 2rem;
  padding-right: 2rem;
}
.contact .row form .inputBox input {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-transform: none;
  background-color: transparent;
}
.contact .row form .btn {
  color: var(---main-color);
  background-color: #fff;
  font-weight: bold;
  color: #000;
}
.contact .row form .btn:hover{
  opacity: 0.9;
  background-color: var(--orange);
  color: #fff;
}
.move {
  animation-name: move;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  transform-origin: center bottom; 
}

@keyframes move 
{
0% { transform: translateX(0) }
25% { transform: translateX(5px) }
50% { transform: translateY(-5px) }
75% { transform: translateY(5px) }
100% { transform: translateX(0) }
}

/* contact end */
/* footer start */
.site-footer {
  padding:3rem 2rem;
  background-color: #ffffff96;
  backdrop-filter: blur(5px);  

   }
  footer h4{
    font-size: 2rem;
    font-weight: 600;
    color: var(--black-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
  }
  footer .footer-item{
      font-size: 1.7rem;
      color:var(--black-color);
  }
  ul{
      list-style: none;
  
  }
  .footer-link{ 
        display: flex;
      justify-content: space-between;
      font-size: 2.5rem;
}

    footer .footer-link a:hover {
      color:var(--orange);
    }
    .footer{
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      text-align: center;
    }
    .footer div{
     padding: 3rem;
    }


/* footer end */

/* ! responsive start */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .move{
    width: 100%;
  }
  .header {
    padding: 1.5rem 2rem;
  }
  .header {

    background-color: #ffffff96;
    backdrop-filter: blur(5px);  
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.7);
    position: fixed;
  width: 80%;
  z-index: 1000;

  }

  .header .logo img {
    height: 7rem;
    width: 10rem;
  }

  section {
    padding: 2rem;
  }

  .products .box-container .box .box-head .name {
    font-size: 3.4rem;
  }
}

@media (max-width: 768px) {
  .header{
    position: fixed;
    width: 80%;
    background-color: #ffffff96;
  backdrop-filter: blur(5px);  
  }
 .header #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 95%;
    box-shadow: 0px 20px 14px 0px rgba(0 0 0 / 75%);
    right: -100%;
    background-color: #ffffffd2;
    backdrop-filter: blur(5px);  
    
  }
  .header .navbar.active {
    right: -10rem;
  width: 100%;
  }

  .header .navbar a {
    color: var(--black-color);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }
  .gallery-img .column{
    width: 75%;
}
.menu,.about{
  padding-top: 10rem
}
}

@media (max-width: 576px){
    html {
        font-size: 50%;
    }
    .meal-layer{
      width: 100%;
      height: 100%;
      position: absolute;
      top: 100%;
      transition: top 0.5s;
  }
  .move{
    width: 100%;
  }
 

}
/* ! responsive end*/
