/* ||||||||||||||||||||||||||| */
/* HEADER SECTION */
/* ||||||||||||||||||||||||||| */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--orange-1);
  height: var(--padding-xxl);
  padding: 0 var(--padding-l);
}

/* ||||||||||||||||||||||||||| */
/* NAVIGATION SECTION */
/* ||||||||||||||||||||||||||| */

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

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--gray-1);
  font-weight: 500;
  font-size: var(--font-xxs);
  transition: all 3.2s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: var(--gray-2);
  cursor: pointer;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: var(--padding-ss) var(--padding-sm);
  border-radius: 9px;
  color: var(--white-1);
  background-color: var(--primary-color);
  transition: none;
}

.logo {
  height: 2.4rem;
}

/* ||||||||||||||||||||||||||| */
/* HERO SECTION */
/* ||||||||||||||||||||||||||| */
.section-hero {
  background-color: var(--orange-1);
  padding: var(--padding-l) 0 var(--padding-xxl) 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: var(--padding-xs);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--padding-xxl);
  align-items: center;
}

.primary-heading {
  font-size: var(--font-xl);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--gray-2);
  margin: 0 0 var(--margin-xs) 0;
}

.hero-description {
  font-size: var(--font-l);
  line-height: 1.5;
  margin: 0 0 var(--margin-l) 0;
}

.section-hero .hero .btn:first-of-type {
  margin: 0 var(--margin-s) 0 0;
}

.hero-image {
  width: 100%;
}
.delivered-meals {
  display: flex;
  margin: var(--margin-xl) 0 0 0;
  max-width: 100%;
}
.delivered-imgs {
  display: flex;
  align-items: center;
}

.delivered-imgs img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  margin: 0 0 0 -1.6rem;
  border: 3px solid var(--orange-1);
}

.delivered-text {
  font-size: var(--font-xs);
  font-weight: 600;
  padding: 0 0 0 var(--padding-s);
}

.delivered-text span {
  color: var(--orange-2);
  font-weight: 700;
}
/* ||||||||||||||||||||||||||| */
/* HOW IT WORKS SECTION */
/* ||||||||||||||||||||||||||| */

.section-featured-in {
  padding: var(--padding-xxl) 0;
}

.heading-featured-in {
  font-size: var(--font-ss);
  text-transform: uppercase;
  letter-spacing: 0.75;
  font-weight: 500;
  text-align: center;
  margin: 0 0 var(--margin-ss) 0;
  color: var(--gray-3);
}

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

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

/* ||||||||||||||||||||||||||| */
/* HOW IT WORKS SECTION */
/* ||||||||||||||||||||||||||| */

.how-section {
  padding: var(--padding-xxl) 0;
}

.how-section .container.grid {
  gap: 9.6rem 0;
  align-items: center;
}

.step-number {
  font-size: var(--font-86);
  font-weight: 600;
  color: var(--gray-3);
  margin: 0 0 var(--margin-12) 0;
}

.step-description {
  font-size: var(--font-xxs);
  line-height: 1.6;
  margin: 0 0 var(--margin-l) 0;
}

.step-img-box {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.step-img-box::before {
  content: "";
  position: absolute;
  background-color: var(--orange-1);
  display: block;
  width: 60%;
  padding: 0 0 60% 0;
  border-radius: 50%;
  z-index: -2;
}

.step-img-box::after {
  content: "";
  position: absolute;
  background-color: var(--orange-3);
  display: block;
  width: 50%;
  padding: 0 0 50% 0;
  border-radius: 50%;
  z-index: -1;
}

.step-img {
  width: 40%;
}

/* ||||||||||||||||||||||||||| */
/* MEALS SECTION */
/* ||||||||||||||||||||||||||| */

.section-meals {
  padding: var(--padding-xxl) 0;
}

.meal-card {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.meal-card:hover,
.meal-card:active {
  transform: translateY(-4px);
  cursor: pointer;
}

.meal-content {
  padding: var(--padding-xs) var(--padding-l) var(--padding-l) var(--padding-l);
}

.meal-tags {
  margin: 0 0 var(--margin-12) 0;
  display: flex;
  gap: 0.4rem;
}
.tag {
  display: inline-block;
  padding: var(--padding-tag-top-n-btn) var(--padding-tag-lft-n-rht);
  font-size: var(--font-ss);
  text-transform: uppercase;
  background-color: var(--green-1);
  color: var(--gray-2);
  border-radius: 100px;
  font-weight: 600;
}
.tag--vegan {
  background-color: var(--green-2);
}
.tag--paleo {
  background-color: var(--yellow-1);
}

.meal-title {
  font-size: var(--font-24);
  color: #333;
  font-weight: 600;
  margin: 0 0 var(--margin-xs) 0;
}

.meal-img {
  width: 100%;
}

.meal-attributes {
  list-style: none;
  font-size: var(--font-xxs);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.meal-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--primary-color);
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list-item {
  font-size: var(--font-xxs);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary-color);
}

.all-recipes {
  font-size: var(--font-xxs);
  display: flex;
  justify-content: center;
}

/* ||||||||||||||||||||||||||| */
/* TESTIMONIALS SECTION */
/* ||||||||||||||||||||||||||| */

.section-testimonials {
  background-color: var(--orange-1);
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: var(--padding-xxl);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin: 0 0 var(--margin-12) 0;
}

.testimonial-text {
  font-size: var(--font-xxs);
  line-height: var(--secondary-line-height);
  margin: 0 0 var(--margin-s) 0;
}

.testimonial-name {
  font-size: var(--font-xs);
  color: var(--gray-5);
}

.gallery {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: var(--padding-s);
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}

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

/* ||||||||||||||||||||||||||| */
/* PRICING SECTION */
/* ||||||||||||||||||||||||||| */

.section-pricing {
  padding: var(--padding-xxl) 0;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid var(--orange-1);
  padding: var(--padding-46);
}

.pricing-plan--complete {
  background-color: var(--orange-1);
  padding: var(--padding-l);
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::before {
  content: "Best Value";
  background-color: var(--yellow-2);
  position: absolute;
  color: var(--gray-2);
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.8rem 4.6rem;
  top: 26px;
  right: -50px;
  transform: rotate(45deg);
}

.pricing-plan {
  border-radius: 11px;
  width: 75%;
}

.plan-header {
  text-align: center;
  margin: 0 0 var(--margin-l) 0;
}

.plan-name {
  color: var(--orange-2);
  font-weight: 600;
  font-size: var(--font-l);
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin: 0 0 var(--margin-xs) 0;
}
.plan-price {
  font-size: var(--font-xxl);
  font-weight: 600;
  color: var(--gray-2);
  margin: 0 0 var(--margin-s) 0;
}

.plan-price span {
  font-size: var(--font-3);
  font-weight: 500;
  margin: 0 0 0.8rem 0;
}

.plan-text {
  font-size: var(--font-xxs);
  line-height: 1.8;
  color: var(--gray-5);
}

.plan-sing-up {
  text-align: center;
  margin: var(--margin-l) 0 0 0;
}

.plan-details {
  font-size: var(--font-xs);
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: var(--primary-color);
  width: 3.2rem;
  height: 3.2rem;
  background-color: var(--orange-1);
  border-radius: 50%;
  padding: var(--padding-s);
  margin: 0 0 var(--margin-xs) 0;
}
.feature-title {
  font-size: var(--font-24);
  color: var(--gray-2);
  font-weight: 700;
  margin: 0 0 var(--margin-s) 0;
}
.feature-text {
  font-size: var(--font-xxs);
  line-height: 1.8;
}

/* ||||||||||||||||||||||||||| */
/* PRICING SECTION */
/* ||||||||||||||||||||||||||| */

.section-cta {
  padding: var(--padding-xxl) 0;
}

.cta-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-image: linear-gradient(
    to right bottom,
    var(--orange-4),
    var(--primary-color)
  );
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  height: 50rem;
  overflow: hidden;
}

.cta-text-box {
  color: var(--brown-1);
  padding: var(--padding-l) var(--padding-xl) var(--padding-xl)
    var(--padding-xl);
}

.cta-body .secondary-heading {
  margin-bottom: var(--margin-xs);
}

.cta-text {
  font-size: var(--font-xxs);
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(235, 125, 34, 0.35)
    ),
    url("../content/img/eating.jpg");
  background-size: cover;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: var(--font-xs);
  font-weight: 500;
  margin-bottom: var(--margin-12);
}
.cta-form input,
.cta-form select {
  width: 100%;
  padding: var(--padding-ss);
  font-size: var(--font-xxs);
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: var(--orange-1);
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: var(--gray-6);
}

.cta-form .cta-btn {
  background-color: var(--brown-1);
  color: var(--orange-1);
  border: none;
  cursor: pointer;
  align-self: end;
  padding: var(--padding-ss);
}

.cta-btn:hover {
  background-color: var(--orange-1);
  color: var(--brown-1);
}

.cta-form *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/* ||||||||||||||||||||||||||| */
/* FOOTER SECTION */
/* ||||||||||||||||||||||||||| */

.footer {
  padding: var(--padding-xxl) 0;
  border-top: 1px solid #eee;
}

.footer-header {
  font-size: var(--font-xxs);
  font-weight: 500;
  margin: 0 0 var(--margin-xs) 0;
}

.contecs {
  font-style: normal;
  font-size: var(--font-xs);
  line-height: 1.6;
}

.address {
  margin-bottom: var(--margin-ss);
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: var(--margin-xs);
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.copyright {
  font-size: var(--font-ss);
  line-height: 1.6;
  color: var(--gray-7);
  margin-top: auto;
}
.social-links a {
  color: var(--gray-1);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-nav a:link,
.footer-nav:visited {
  text-decoration: none;
  font-size: var(--font-xs);
  color: var(--gray-7);
  transition: all 0.3s;
}

.footer-nav a:hover,
.footer-nav:active {
  color: var(--gray-1);
}

.footer-tel:link,
.footer-tel:visited,
.footer-mailito:link,
.footer-mailito:visited {
  text-decoration: none;
  font-size: var(--font-xs);
  color: var(--gray-7);
  transition: all 0.3s;
}

.footer-tel:hover,
.footer-tel:active,
.footer-mailito:hover,
.footer-mailito:active {
  color: var(--gray-1);
}
