/* ***************** */
/* Header/Nav Section */
/* ***************** */
.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9.6rem;
  padding: 0 4.8rem;
  background-color: #fdf2e9;
}

.header-box img {
  height: 2.4rem;
  position: relative;
}

.navigation {
  display: flex;
  gap: 4.8rem;
  align-items: center;
}

.mob-nav-btn {
  border: none;
  color: #333;
  background: none;
  cursor: pointer;

  display: none;
}

.mob-nav-icon[name="close-outline"] {
  display: none;
}

.mob-nav-icon {
  font-size: 3.6rem;
}

/* Sticky Navigation */
.sticky .header-box{
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .hero-section {
  margin-top: 9.6rem;
}

.btn--header:link,
.btn--header:visited {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.8rem;
  /* margin-right: 0.3rem; */
  transition: all 0.4s;
}

.btn--header:hover,
.btn--header:active {
  color: #cf711f;
}

.btn--padding:link,
.btn--padding:visited {
  border-radius: 9px;
  color: #fff;
  background-color: #e67e22;
  padding: 1.2rem 2.4rem;
}

.btn--padding:hover,
.btn--padding:active {
  background-color: #cf711f;
}

/* ***************** */
/* HERO SECTIONS */
/* ***************** */
.hero-section {
  background-color: #fdf2e9;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-image {
  width: 100%;
}

.hero-text {
  font-size: 2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 4.8rem;
}

.hero-customer-box {
  margin-top: 9.6rem;
  display: flex;
  align-items: center;
}

.customer-image {
  display: flex;
  align-items: center;
}

.customer-image img {
  width: 5.2rem;
  border: 3px solid white;
  border-radius: 50%;
  margin-right: -1.6rem;
}
.text-bold {
  color: #cf711f;
}

.customer-text {
  font-size: 1.7rem;
  color: #333;
  font-weight: 700;
}

/* ***************** */
/* HOW IT WORKS Section */
/* ***************** */
.how-it {
  padding: 9.6rem 0;
  /* background-color: red; */
}

.step-number {
  font-size: 8.6rem;
  color: #dee2e6;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.6;
}

.step-image-box {
  display: flex;
  justify-content: center;

  position: relative;
}

.step-image-box::after,
.step-image-box::before {
  content: "";
  display: block;
  border-radius: 50%;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-image-box::before {
  width: 60%;
  padding-bottom: 60%;
  background-color: #fdf2e9;
  z-index: -2;
}

.step-image-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #fae5d3;
  z-index: -1;
}

.step-image {
  width: 35%;
}

/* ***************** */
/* Featured-in section */
/* ***************** */
.featured-in {
  padding: 4.8rem 0 3.2rem 0;
}

.featured-heading {
  font-size: 1.4rem;
  letter-spacing: 0.75px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.featured-logo {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

/* ***************** */
/* Meals-section */
/* ***************** */
.meals {
  padding: 9.6rem 0 3.2rem 0;
  margin-bottom: 6.4rem;
}

.meal-card {
  box-shadow: rgba(0, 0, 0, 0.075) 0px 2.4rem 4.8rem;
  border-radius: 11px;
  overflow: hidden;

  transition: all 0.3s;
}

.meal-card:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0px 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-content {
  padding: 0 4.8rem 4.4rem 4.8rem;
}

.meal-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3.2rem;
}

.meal-image {
  width: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 2.4rem;
}

.meal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.meal-features li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.meal-icon {
  font-size: 2.4rem;
  color: #e67e22;
}

.icon-check {
  font-size: 3.2rem;
  color: #e67e22;
}

.meal-tags {
  display: flex;
  margin-bottom: 1.4rem;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  font-size: 1.2rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 9px;
}

.tag--vegetarian {
  background-color: #51cf66;
}

.tag--vegan {
  background-color: #94d82d;
}

.tag--paleo {
  background-color: #fcc419;
}

.all-meals {
  font-size: 1.8rem;
  text-align: center;
}

.link:link,
.link:visited {
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  margin-bottom: 2px;

  transition: all 0.3s;
}

.link:hover,
.link:active {
  border-bottom: 1px solid transparent;
  color: #cf711f;
}

/* ***************** */
/* Testimonial-section */
/* ***************** */
.section-testimonial {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  background-color: #fdf2e9;
}

.testimonial-content {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 6.4rem;
}

.testimonial-image {
  height: 6.4rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: #333;
}

.testimonial-author {
  font-size: 1.6rem;
  color: #777;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  transition: all 0.4s;
}

.gallery-image:hover {
  transform: scale(1.1);
}

/* ***************** */
/* Pricing-section */
/* ***************** */
.pricing-section {
  padding: 9.6rem 0;
}

.card {
  padding: 4.8rem;
  border-radius: 8px;
  width: 55%;
}

.pricing--starter {
  border: 2px solid #fdf2e9;
  justify-self: end;
}

.pricing--complete {
  background-color: #fdf2e9;

  position: relative;
  overflow: hidden;
}

.pricing--complete::before {
  content: "best value";
  text-transform: uppercase;
  color: #333;
  background-color: #fad564;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.8rem 5.2rem;

  position: absolute;
  transform: rotate(45deg);
  top: 29px;
  right: -48px;
}

.card-content {
  text-align: center;
  margin-bottom: 4.8rem;
}

.card-heading {
  font-size: 1.8rem;
  color: #cf711f;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.card-text {
  font-size: 1.4rem;
  color: #777;
}

.card-pricing {
  font-size: 6.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.2rem;
}

.card-pricing span {
  font-size: 2.4rem;
  margin-right: 0.8rem;
}

.plan-sign-up {
  margin-top: 4.8rem;
  text-align: center;
}

.feature-text {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 9.6rem;
}

.price-features-icons {
  font-size: 3.2rem;
  background-color: #fdf4ed;
  color: #e67e22;
  padding: 1.6rem;
  border-radius: 100%;
  margin-bottom: 2.4rem;
}

.features-list {
  list-style: none;
  /* display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: center; */
}

.feature-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.4rem;
}

.text {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.8;
}

/* ***************** */
/* cta-section */
/* ***************** */
.cta-section {
  padding: 8rem 0;
  margin-bottom: 4.8rem;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #e67e22;
  border-radius: 11px;
  overflow: hidden;

  background-image: linear-gradient(to right bottom, #eb984e, #e67e22);
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}

.cta-text-box .heading-secondary {
  margin-bottom: 3.2rem;
  font-weight: 700;
  color: inherit;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 4.8rem;
}

.cta-image {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.352),
      rgba(230, 125, 34, 0.358)
    ),
    url(../img/eating.jpg);
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2.4rem;
  column-gap: 3.2rem;
  color: #45260a;
}

.cta-form label {
  display: block;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.cta-form input {
  width: 100%;
  font-family: inherit;
  border: none;
  color: inherit;
  font-size: 1.8rem;
  background-color: #fdf2e9;
  padding: 1.2rem;
  border-radius: 11px;

  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}

.cta-form input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.cta-form select {
  width: 100%;
  display: block;
  color: inherit;
  font-family: inherit;
  font-size: 1.8rem;
  padding: 1.2rem;
  border-radius: 11px;
}

/* ***************** */
/* footer-section */
/* ***************** */
.footer-box {
  border-top: 1px solid #eee;
}

.footer {
  display: grid;
  grid-template-columns: 60fr 55fr 40fr 40fr 40fr;
  padding: 9.6rem 0;
  column-gap: 4.4rem;
}

.copyright img {
  height: 2.4rem;
  margin-bottom: 3.2rem;
}

.logo {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 6.4rem;
}

.social-link {
  font-size: 2.4rem;
}

.copyright-text {
  font-size: 1.4rem;
  color: #888;
  line-height: 1.7;
}

.contact-us {
  font-family: inherit;
  font-style: normal;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #777;
  margin-bottom: 3.2rem;
}

.address,
.contact-no,
.email {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #777;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-list
{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  color: #777;
  font-size: 1.6rem;

  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active{
  color: #555;
}