/*********************************/
/*?) General re-usable Components */
/*********************************/

.heading-primary {
  font-size: 5.063rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.005rem;
}

.heading-secondary {
  font-size: 4.768rem;
  font-weight: 600;
  margin-bottom: 9.6rem;
  letter-spacing: -0.005rem;
  line-height: 1.2;
}

.heading-tertiary {
  font-size: 3.052rem;
  font-weight: 700;
  letter-spacing: -0.005rem;
  margin-bottom: 3.2rem;
  line-height: 1.2;
}

.subheading,
.heading-tertiary-meals {
  font-size: 1.563rem;
  letter-spacing: 0.75px;
  color: #ca6a16;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2.6rem;
}

.btn:link,
.btn:visited {
  text-decoration: none;
  padding: 1.6rem 3.2rem;
  /* border: 0.3rem solid #fff; */
  box-shadow: inset 0 0 0 0.3rem #fff;
  border-radius: 12px;
  display: inline-block;
  margin-top: 4.8rem;
  font-size: 2.441rem;
  font-weight: 500;
  transition: all 0.3s;
}

.hero-btn {
  display: flex;
  gap: 1.6rem;
}

.btn--cta:link,
.btn--cta:visited {
  background-color: #e67e22;
  color: #fff;
}

.btn--cta:hover,
.btn--cta:active {
  background-color: #ca6a16;
}

.btn--learn-more:link,
.btn--learn-more:visited {
  background-color: #fff;
  color: #e67e22;
}

.btn--learn-more:hover,
.btn--learn-more:active {
  background-color: #fdf4ed;
  /* color: #383d43; */
}

.heading {
  font-size: 4.768rem;
  font-weight: 700;
  margin-bottom: 9.6rem;
  letter-spacing: -0.005rem;
  line-height: 1.2;
}

/*********************************/
/* Header */
/*********************************/

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.6rem;
  padding: 0 4.8rem;
  background-color: #fdf4ed;
  position: relative;
}

.logo {
  height: 2.2rem;
}

/*********************************/
/* Navigation */
/*********************************/

.nav-links-container {
  list-style-type: none;
  gap: 4.8rem;
}

.nav-link:link,
.nav-link:visited {
  text-decoration: none;
  font-size: 1.953rem;
  font-weight: 500;
  color: #383d43;
  transition: all 0.4s;
}

.nav-link:active,
.nav-link:hover {
  color: #ca6a16;
}

.nav-links-container li:nth-child(5) .nav-link:link,
.nav-links-container li:nth-child(5) .nav-link:visited {
  color: #fff;
  background-color: #e67e22;
  padding: 1.2rem 2.4rem;
  display: inline-block;
  border-radius: 12px;
}

.nav-links-container li:nth-child(5) .nav-link:hover,
.nav-links-container li:nth-child(5) .nav-link:active {
  background-color: #ca6a16;
}

.btn-mobile-nav {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 99999999;
}

.btn-mobile {
  height: 4.8rem;
  width: 4.8rem;
  color: #383d43;
  transition: all 0.5s;
  border-radius: 50%;
  padding: 1.2rem;
}

.btn-mobile:hover {
  color: #ca6a16;
  background-color: #fdf4ed;
  border-radius: 50%;
  padding: 1.2rem;
}

.btn-mobile[name="close-outline"] {
  display: none;
}

/*********************************/
/* Hero Section */
/*********************************/

.hero {
  background-color: #fdf4ed;
  padding: 4.8rem 0 9.6rem 0;
}

.hero-container {
  font-size: 5.063rem;
  max-width: 130rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  align-items: center;
  gap: 9.6rem;
  padding: 0 3.2rem;
}

.hero-img {
  width: 100%;
}

.hero-description {
  font-size: 1.953rem;
  margin-top: 2.4rem;
  margin-top: 3.2rem;
  line-height: 1.4;
}

.healthy {
  /* text-transform: uppercase; */
  color: #bcd747;
  font-size: 7.16rem;
}

.hero-customers {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-top: 8rem;
}

.customer-images-container {
  display: flex;
  align-items: center;
}

.customer-img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1rem;
  border: 3px solid #fdf4ed;
}

.customer-img:last-child {
  margin-right: 0;
}

.delivered-meals {
  font-size: 1.563rem;
  font-weight: 500;
}

.delivered-meals span {
  color: #e67e22;
}

/*********************************/
/* FEATURED IN Section */
/*********************************/

.featured-in-section {
  padding: 6.4rem 0 3.2rem 0;
}

.featured-in-container h2 {
  color: #878f97;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 2.4rem;
  text-align: center;
}

.featured-logos {
  justify-content: space-around;
}

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

/*********************************/
/* HOW IT WORKS Section */
/*********************************/

.app-operating-principle {
  padding: 9.6rem 0;
}

.step-img-container {
  position: relative;
}

.step-img-container::before,
.step-img-container::after {
  content: "";
  display: block;
  width: 80%;
  padding-bottom: 80%;
  background-color: #fdf4ed;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.step-img-container::after {
  background-color: #fae5d3;
  width: 60%;
  padding-bottom: 60%;
  z-index: -1;
}

.step-img {
  width: 45%;
}

.steps {
  align-items: center;
  justify-items: center;
}

.step-text-container {
  line-height: 1.2;
}

.step-number {
  font-size: 9.313rem;
  font-weight: 500;
  color: #b9c2ca8e;
  margin-bottom: 2.4rem;
  display: inline-block;
}

.step-description {
  font-size: 1.563rem;
  color: #4c5257;
  line-height: 1.8;
}

/*********************************/
/* MEALS Section */
/*********************************/

.meals-section {
  margin: 0 auto;
  padding: 9.6rem 0;
}

.meals {
  align-items: center;
  justify-items: center;
  gap: 6.4rem;
  margin-bottom: 4.8rem;
}

.meals-section-heading {
  text-align: center;
}

.meal {
  border-radius: 12px !important;
  box-shadow: 0px 2.4rem 4.8rem rgb(0 0 0 / 12%);
  overflow: hidden;
  transition: all 0.5s;
}

.meal:hover {
  box-shadow: 0px 3.2rem 6.4rem rgb(0 0 0 / 9%);
  transform: translateY(-1rem);
}

.img-container img {
  width: 100%;
}

.meal-features {
  padding: 4.8rem;
  padding-top: 3.2rem;
}

.tags {
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  color: #222;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.75px;
}

.meal-heading {
  font-size: 2.441rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}

.tags--vegetarian {
  background-color: #51cf66;
}

.tags--vegan {
  background-color: #94d82d;
}

.tags--paleo {
  background-color: #ffd43b;
}

.tags--flex-gap {
  gap: 0.5rem;
}

.meal-features ul,
.meal-content ul {
  list-style-type: none;
  font-size: 1.953rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.meal-features ul li,
.meal-content ul li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.diet-title {
  font-weight: 700;
  font-size: 3.052rem;
  margin-bottom: 3.2rem;
}

.diet.meal-content ul li {
  gap: 1.6rem;
}

.all-recipes {
  text-align: center;
}

.recipes--link:link,
.recipes--link:visited {
  text-decoration: none;
  color: #ca6a16;
  font-size: 1.953rem;
  letter-spacing: 0.75px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.5s;
}

.recipes--link:hover,
.recipes--link:active {
  color: #e67e22;
  border-bottom: 1px solid transparent;
}

/*********************************/
/* TESTIMONIAL Section */
/*********************************/

.testimonial-section {
  background-color: #fdf4ed;
  gap: 0;
  grid-template-columns: 55fr 45fr;
  margin-bottom: 0 !important;
}

.testimonial {
  padding: 9.6rem;
}

.testimonial-container {
  gap: 4.8rem;
}

.svg-reposition {
  margin: 1rem 0 0 3rem;
}

.testimonials svg {
  transform: rotate(180deg);
  height: 3.6rem;
  width: 3.6rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.953rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  color: #495057;
}

.testimonial-name {
  font-size: 1.563rem;
  color: #5d666f;
  display: block;
  margin-left: 2.4rem;
}

.gallery {
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-img-container {
  overflow: hidden;
}

.gallery-img {
  display: block;
  width: 100%;
  transition: all 0.5s;
}

.gallery-img:hover {
  transform: scale(1.1);
}

/*********************************/
/* PRICING AND FEATURES Section */
/*********************************/

/*? PRICING Section */

.pricing-container {
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.pricing-plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.pricing-type {
  font-size: 2.441rem;
  margin-bottom: 3.2rem;
  color: #ca6a16;
  text-transform: uppercase;
  font-weight: 600;
}

.price span {
  font-size: 3.815rem;
  margin-right: 0.8rem;
  font-weight: 500;
}

.price {
  font-size: 7.451rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.price-text {
  font-size: 1.563rem;
  color: #5d666f;
  line-height: 1.6;
}

.list {
  list-style: none;
  font-size: 1.953rem;
  gap: 2.4rem;
}

.list-item {
  gap: 1.6rem;
}

.plan-sign-up {
  text-align: center;
}

.pricing-plans {
  border-radius: 12px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 10%);
  transition: all 0.4s;
  border: 2px solid #fdf4ed;
  width: 75%;
  padding: 4.8rem 0;
  justify-self: end;
  letter-spacing: 0.75;
  position: relative;
}

.pricing-plans:last-child {
  background-color: #fdf4ed;
  justify-self: start;
  overflow: hidden;
}

.pricing-plans:last-child::after {
  content: "best value";
  display: inline-block;
  padding: 0.8rem 3.2rem;
  color: #373e43;
  background-color: #ffd333;
  font-size: 1.563rem;
  position: absolute;
  top: 5%;
  right: -9%;
  transform: rotate(45deg);
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-plans:hover {
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 15%);
  transform: translateY(-10px);
}

.pricing-txt-container {
  text-align: center;
}

.pricing-txt {
  font-size: 1.563rem;
  line-height: 1.6;
  color: #5d666f;
}

/*? FEATURES Section */

.pricing-feature svg {
  margin-bottom: 2.4rem;
  background-color: #fdf4ed;
  padding: 1.6rem;
  border-radius: 50%;
}

.pricing-feature-heading {
  font-size: 2.441rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #383d43;
}

.pricing-feature-txt {
  font-size: 1.953rem;
  font-size: 1.563rem;
  line-height: 1.6;
  color: #4c5257;
}

/*********************************/
/* CTA Section */
/*********************************/

.cta--section {
  padding-top: 4.8rem;
}

.cta-form *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgb(253, 244, 237, 50%);
}

.cta--container {
  grid-template-columns: 2fr 1fr;
  background-image: linear-gradient(135deg, #efa96c, #e67e22);
  border-radius: 2.4rem;
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 25%);
  gap: 0 !important;
  padding: 0;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}

.cta-text-box .heading-secondary {
  margin-bottom: 3.2rem;
  color: #5c300a;
}

.cta-text {
  font-size: 1.953rem;
  line-height: 1.6;
  color: #5c300a;
  margin-bottom: 4.8rem;
}

.cta-form {
  column-gap: 4.8rem;
  row-gap: 3.2rem;
  color: #5c300a;
}

.cta-form label {
  display: block;
  font-size: 1.953rem;
  margin-bottom: 0.8rem;
  color: inherit;
  font-weight: 500;
}

.cta-form input,
.cta-form select {
  font-family: inherit;
  font-size: 1.953rem;
  padding: 1.2rem 0.8rem;
  width: 100%;
  border-radius: 9px;
  border: none;
  background-color: #fdf4ed;
  color: inherit;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 20%);
}

.cta-form input::placeholder {
  color: #b0b8bf;
}

.cta-btn {
  border-radius: 9px;
  padding: 1.2rem 0.8rem;
  font-size: 1.953rem;
  font-weight: 600;
  transition: all 0.5s;
  background-color: #5c300a;
  color: #fdf4ed;
  border: none;
  cursor: pointer;
  align-self: end;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 20%);
}

.cta-btn:hover {
  background-color: #fdf4ed;
  color: #5c300a;
}

.cta-img-box {
  background-image: linear-gradient(
      135deg,
      rgba(239, 169, 108, 30%),
      rgb(230, 126, 34, 30%)
    ),
    url(../img/eating.jpg);
  background-size: cover;
  background-position: center;
  border-top-right-radius: 2.4rem;
  border-bottom-right-radius: 2.4rem;
}

/*********************************/
/* FOOTER Section */
/*********************************/

.footer {
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.footer-logo {
  margin-bottom: 3.2rem;
}

.footer-logo-container {
  gap: 0;
}

.footer-logo-container ul {
  list-style: none;
  gap: 1.6rem;
}

.social-media-links {
  display: inline-block;
  font-size: 24px;
  text-decoration: none;
  color: #6d7b88;
  transition: all 0.4s;
}

.social-media-links:hover {
  color: #383d43;
}

.copyright {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.953rem;
  text-transform: capitalize;
  color: #5d666f;
  font-weight: 500;
  margin-bottom: 3.2rem;
}

.address {
  line-height: 1.6;
}

.contacts {
  gap: 0;
}

.mail {
  margin-top: auto;
}

address p {
  font-style: normal;
  margin-bottom: 2.2rem;
}

.footer-nav-list {
  list-style: none;
  gap: 2.4rem;
  line-height: 1;
}

.footer-nav-list li a:link,
.footer-nav-list li a:visited,
.contact-omnifood a:link,
.contact-omnifood a:visited,
address p {
  font-size: 1.563rem;
  color: #66707a;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-nav-list li a:hover,
.footer-nav-list li a:active,
.contact-omnifood a:hover,
.contact-omnifood a:active,
address p {
  color: #4c5257;
}
