html {
  
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  font: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
}

img,
svg,
ion-icon,
span,
button {
  /* starts on a new line */
  display: block;

}


.container {
  position: relative;
  max-width: 1440px;
  /* center align HTML elements*/
  margin: auto;
  background: #ffffff;
  /* if overflow -hidden from view*/
  overflow: hidden;
}


.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 20px 30px;
  background: hsla(0, 0%, 100%, 0.99);
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.05);
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.05);
  z-index: 5;
  /*placed in front */
}

.navbar-wrapper {
  /* laying elements in row*/
  display: flex;
  justify-content: space-between;
}

.navbar-nav {
  position: static;
  /* make transparent */
  opacity: 1;
  width: auto;
  height: auto;
  padding: 0;
  /* laying elements in row*/
  display: flex;
  flex-direction: row;
  align-items: left;
  gap: 30px;
}

.nav-link {
  color: #000;
  font-size: 22px;
  /* effect with a slow start*/
  transition: 0.25s ease;
}

.nav-link:hover {
  color: #f7c532;
}


.home {
  display: grid;
  /* Divide into 2 column*/
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 10px;
}

.home-left {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  /*spacing between letters */
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.home-left p {
  font-size: 20px;
  display: inline-block;
  padding: 3px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.home-right {
  position: relative;
  aspect-ratio: 10 / 11;
  padding-top: 70%;
}

.food-img {
  position: absolute;
  width: 60%;
}

.food-1 {
  top: 25%;
  left: -4%;
}

.food-2 {
  top: 12%;
  right: -4%;
}

.food-3 {
  top: 40%;
  right: -5%;
}

.about {
  padding-top: 100px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 100px;
  /* layout with rows and columns*/
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px dotted;
  padding: 10px;
}

.about-right .section-title {
  margin-bottom: 30px;
}

.about-right p {
  max-width: 100%;
  margin-bottom: 30px;
  line-height: 1.5;
}


.services {
  padding: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.card-number {
  font-size: 48px;
  font-family: "Monoton", cursive;
  color: #f7c532;
  margin: 0;

}

.card-heading {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
  display: inline;
}

.card-text {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}


.menu {
  padding: 120px;
}

.menu .section-title {
  margin-bottom: 30px;
  font-size: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.menu-card .img-box {
  position: relative;
  overflow: hidden;
}

.menu-img {
  width: 290px;
  height: 100%;
  object-fit: cover;

}

.menu-card:hover .menu-img {
  transform: scale(1.05);
}

.menu-card .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #f3f2f2;
  margin-bottom: 0px;
}

.menu-card .menu-name {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  padding-left: 15px;
  margin: 0px;
}

.menu-card .menu-price {
  background: #f7c532;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
}

.menu-card .small {
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}

.menu-card .menu-text {
  font-size: 14px;
  color: #999999;
  line-height: 1.6;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
}

.menu-card .menu-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f7c532;
}

.menu-rating img {
  height: 30px;
  width: 30px;
}

.menu .btn-primary {
  background: #f7c532;
  width: 100px;
  height: 50px;
  border-radius: 2px;
  transition: 0.25s ease;
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding-top: 5px;
  position: relative;
}

.testimonials{
	padding:120px;
}

.testimonials .section-title{
	margin-bottom:15px;
	font-size:32px;
}

.testimonials-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:50px;

}

.testimonials-card .card-title{
	color:#000;
	font-weight:600;
	margin-bottom:15px;
	font-size:24px;
}

.testimonials-rating{
	display:flex;
	align-items:center;
	gap:5px;
	margin-bottom:15px;
}

.testimonials-rating img{
	height:25px;
	width:25px;
}

.testimonials-text{
	font-size:14px;
	color:#999999;
	line-height:1.4;
	letter-spacing:0.5px;
	margin-bottom:15px;
	text-align:justify;
}

.customer-info{
	display:flex;
	align-items:center;
	gap:15px;
}

.customer-img-box{
	width:50px;
	height:50px;
	owerflow:hidden;
}

.customer-img{
	width:100%;
	height:100%;
	border-radius:50%;
	object-fit:cover;
}

.customer-name{
	font-size:14px;
	color:#000;
	font-weight:600;
}

footer{
	background:#a5a1a1;
	padding:20px;
	border:0px;
	width:100%;
	height:100px;
}

.footer-wrapper{
	padding:30px;
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	align-items:center;
}

.social-link{
	display:flex;
	gap:15px;
}

.copyright{
	font-size:12px;
	color:#dcdbdb;
	text-align:center;
	letter-spacing:0.5px;
}