* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "QuickSand", sans-serif;
  line-height: 1;
  font-weight: 400;
}

.header {
  width: 120rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  color: #343a40;
}

.main-nav-link:active,
.main-nav-link:hover {
  color: #f76707;
  font-weight: 500;
}

/* hero */
.section-hero {
  padding: 6.4rem 0 3.2rem 0;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6.4rem;
}

.hero-description {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: #868e96;
}

.hero-img {
  width: 100%;
}

/* parthners */
.section-partners {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-partners {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  color: #888;
}

.partners {
  display: flex;
  justify-content: center;
  gap: 6.4rem;
}

.partners-img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

/* Our Menu */
.section-menu {
  padding: 9.6rem 0;
}

.menu-item {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.4s;
}

.menu-item:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 4.8rem 9.6rem rgba(0, 0, 0, 0.1);
}

.menu-info {
  padding: 2.4rem;
}

.menu-img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
}

.menu-name {
  font-size: 2.4rem;
  color: #333;
}

.btn-menu {
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  transition: all 0.3s;
}

.menu-description {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #868e96;
  margin-bottom: 1.6rem;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-rating-box {
  display: flex;
  align-items: center;
}

.star {
  display: flex;
  align-items: center;
}

.star-icon {
  stroke: #fcc419;
  fill: #fcc419;
  width: 2.6rem;
}

.menu-rating {
  font-size: 1.6rem;
  color: #868e96;
  margin-left: 0.8rem;
}

.menu-price {
  font-size: 2.4rem;
  color: #f76707;
  font-weight: 600;
}

/* food */
.section-food {
  padding: 9.6rem 0;
}

.food-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  height: 60rem;
}

.food-img {
  width: 100%;
  height: 60rem;
  object-fit: cover;
}

.food-description {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #868e96;
}

.food-box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-bottom: 3.2rem;
}

.food-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.4s;
  padding: 1.2rem 2.4rem;
}

.food-icon-box {
  background-color: #f76707;
  border-radius: 50%;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.1);
}

.food-icon {
  width: 3.6rem;
  color: #fff;
}

/* Contact Us */
.section-contact {
  padding: 9.6rem 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input {
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  border: 1px solid #e9ecef;
  border-radius: 9px;
  font-family: inherit;
}

input:focus {
  outline: none;
  border: 1px solid #f76707;
}

textarea:focus {
  outline: none;
  border: 1px solid #f76707;
}

.textarea {
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  border: 1px solid #e9ecef;
  border-radius: 9px;
  font-family: inherit;
}

.btn-form {
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 500;
  padding: 1.6rem 3.2rem;
  transition: all 0.3s;
  background-color: #f76707;
  color: #fff;
  border: none;
  border-radius: 9px;
  cursor: pointer;
}

.btn-form:hover {
  background-color: #e8590c;
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 3.2rem 0;
}

.copyright {
  font-size: 1.4rem;
  color: #868e96;
  text-align: center;
}
