/*****************************/
/* HEADER */
/*****************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000926;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
  position: fixed;
  width: 100%;
  z-index: 999;

}

.logo {
  height: 4.8rem;
}

/*****************************/
/* NAVIGATION */
/*****************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color:  #def034;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #560d4e;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #560d4d7e;
}

/* MOBILE NAV */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/*****************************/
/* HERO SECTION */
/*****************************/
.section-hero {
  padding: 15rem 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-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: #fff;
}

.hero-img {
  border: 1px solid #333;
  width: 100%;
  border-radius: 5px;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: #cf711f;
}

/*****************************/
/* FEATURED IN SECTION */
/*****************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
  color: #999;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

.section-about-us {
  padding: 9.6rem 0;
  background-color: #1a223c48;
}

.about-heading {
  font-size: 4.4rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.about-img {
  border: 1px solid #333;
  width: 100%;
  border-radius: 5px;
  width: 100%;
}

/*****************************/
/* HOW IT WORKS SECTION */
/*****************************/

.section-how {
  padding: 9.6rem 0;
  background-color: #1a223c48;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #bbb;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img {
  width: 60%;
  border-radius: 50%;
}

/*****************************/
/* SECTION PLANS*/
/*****************************/

.section-plans {
  padding: 9.6rem 0 3rem;
  background-color: #1a223c48;

}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2rem;
}

.plans-heading {
  font-size: 3rem;
  margin-bottom: 5rem;
  color: #fff;
}

.plan {
  text-align: center;
  background-color: #000926;
  padding: 5rem 2rem;
  border-radius: 2px;
  margin-bottom: 3rem;
}

.plan-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.3;
}

.price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 4rem;
}

.plan-text {
   font-size: 1.2rem;
   margin-bottom: 3rem;
   color: #bbb;
}

.plan-link:link,
.plan-link:visited {
  font-size: 1.8rem;
  text-decoration: none;
  color: #fff;
  background-color: #560d4e;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1.5rem;
}

.plan-link:hover,
.plan-link:active {
  background-color: #560d4d7e;
}

.section-features {
  background-color: #000926;
  padding: 5rem 0;
}

.feature {
 text-align: center;
 padding: 2rem;
 border-radius: 1rem;
}


.feature-icon {
  color: #def034;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #1a223c48;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-tittle {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/*****************************/
/* CALL TO ACTION SECTION */
/*****************************/

.section-cta {
  padding: 4.8rem 0 12.8rem 0;
  background-color: #1a223c48;
}

.cta {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #fff;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}


.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form select,
.cta-form input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: #aaa;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgb(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta-form button {
  border: none;
  cursor: pointer;
  color: #fdf2e9;
  font-family: inherit;
  background-color: #560d4e;
  align-self: end;
  padding: 1.2rem;
  grid-column: span 2/-1;
  width: 100%;
}

.cta-form button:hover {
  background-color: #560d4d7e;
  color: #555;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/*****************************/
/* FOOTER */
/*****************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.news {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #560d4e;
}

.send-btn {
  background:none;
  background-color: #560d4e;
  border:none;
  color: #fff;
  padding: 0 1rem;
  height: 3.7rem;
  display: inline;
  cursor: pointer;
}

.send-icon {
  width: 2rem;
  height: 2rem;
  color: #fff;
  transform: rotate(-30deg);
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  margin-bottom: 1rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  line-height: 1.6;
  font-size: 1.4rem;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.news-letter {
  padding: 0 1rem;
  width: 100%;
  height: 3.7rem;
}


.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}
