
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

:root{
    --btn-color:#e58f00;
    --about-sec:#1d1d23;
}
/* *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: 0.5s;
    text-transform: capitalize;
    font-size: 65%;
    scroll-behavior: smooth;
} */
/* html{
    font-size: 65%;
    scroll-behavior: smooth;
} */

.enjoy-our-food{
  padding: 2rem 25%;
  background: url(assets/img/images/cateringback.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;

}

.food-main-content{
  margin-top: 17%;
    /* width: 40%; */
    /* border: 4px solid white; */
    /* padding: 2rem; */
}
.food-main-content h1 {
  margin-top: -60px;
  color: white;
  font-size: 45px;
  font-weight: 500;
  text-align: center;
  padding: 4rem 0;
}

.food-main-content p {
    margin-top: -45px;
    color: white;
    font-size: 19px;
    text-align: center;
    padding: 1rem 0px;
    line-height: 30px;
}


@media (max-width:767px) {
  
    .food-main-content{
        /* width: 100%;
        border: 4px solid white;
        padding: 1rem; */
    }


}

/* start gallery css */

.gallery-section{
	width: 100%;
	padding: 50px 0;
	box-sizing: border-box;
  }
  #gallery{
    margin-top: 45px;
    /* margin: 20px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 0.8rem;
    grid-auto-flow: dense;
    height: 400px;
  }
  .inner-width{
	width: 100%;
	max-width: 1200px;
	margin: auto;
  }
  
  .gallery-section h1{
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3;
    color: #270d0c;
    background: linear-gradient(180deg, #270d0c, #270d0c);
    -webkit-background-clip: text;
	text-align: center;
	text-transform: uppercase;
  }
  
  .border{
	width: 180px;
	height: 4px;
	background: #333;
	margin: 60px auto;
  }
  
  .gallery-section .gallery{
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: center;
  }
  
  .gallery-section .image{
	flex: 25%;
	/* border-radius: 20px; */
	overflow: hidden;
	cursor: pointer;
  }
  
  .gallery-section .image img{
	width: 100%;
	height: 100%;
	/* transition: 0.4s; */
	background-color: #ffffff;
    padding: 0px;
    /* border-radius: 20px; */
  }

  .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer !important;
}

  
  .gallery-section .image:hover img{
	transform: scale(1.1) rotate(0deg);
  /* transform: perspective(500px) translate(10px, 0, 20px) rotateY(3deg); */
  }

  img.mfp-img:hover {
    transform: scale(1) rotate(0deg) !important;
  }

  
  /* responsive gallery css */

  @media screen and (max-width:960px) {
	.gallery-section .image{
	  flex: 33.33%;
	}
	#gallery{
		height: 200%;
	}
  }
  
  @media screen and (max-width:768px) {
	.gallery-section .image{
	  flex: 50%;
	}
	#gallery{
		height: 200%;
	}
  }
  
  @media screen and (max-width:480px) {
	.gallery-section .image{
	  flex: 100%;
	}
	#gallery{
		height: 200%;
	}
  }

  /* end of gallery css */









