/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

html {
  /* by default 16px i need 10px  */
  /* 10/16 = 0.625 = 62.5 */
  font-size: 62.5%;
  /* now will use rem instead of px */
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}
.grid {
  display: grid;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdf2e9;
  height: 9.6rem;
  padding: 0 4.8rem;
}
.header-logo {
  /* width: 100%;
   */
  height: 2.2rem;
}
.try-button {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #e67e22;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.2rem;
}
header nav a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.btn-mobile-nav {
  background-color: #fdf2e9;
  color: #45260a;
  border: none;
}
.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}
.grid-default-gaps {
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}
.pricing--grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
.grid--col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.mobile-grid--col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.featured-grid--col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--col-5 {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  row-gap: 7rem;
}
.grid--row-1 {
  grid-template-rows: 1fr;
}
.grid--2-cols-2-rows {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 4.8rem;
  column-gap: 8rem;
}
.grid--2-cols-special {
  grid-template-columns: 48fr 52fr;
  background-color: #fdf2e9;
}
.padding-9-6rem {
  padding: 6rem 0;
}
.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}
.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}
.section-hero {
  background-color: #fdf2e9;
  padding: 4.8rem 0 9.6rem 0;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}
.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
  /* color: #45260a; */
  /* color: #343a40; */
  letter-spacing: -0.5px;
}
.img {
  width: 100%;
}
.hero-buttons {
  display: flex;
  gap: 1.6rem;
}
.start-well-hero {
  display: inline-block;
  text-decoration: none;
  background-color: #e67e22;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
}
.start-well {
  display: inline-block;
  text-decoration: none;
  background-color: #e67e22;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
}
.learn-more {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  background-color: #fff;
  color: #555;
}

.btn {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.delivered-imgs {
  display: flex;
  border-radius: 50%;
}
.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}
.delivered-imgs img {
  border-radius: 50%;
  margin-right: -1.1rem;
  height: 4.8rem;
  width: 4.8rem;
  border: 3px solid #fdf2e9;
}

.featured-text {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 2.4rem;
}
.logos {
  filter: brightness(0);
  opacity: 50%;
  height: 3.2rem;
  display: flex;
  justify-content: space-around;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}
.delivered-text span {
  color: #cf711f;
  font-weight: 700;
}
.how-works {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.content-subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.pricing-subheading {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}
.section-how {
  padding: 9.6rem 0;
}
.step-img {
  width: 35%;
  z-index: 10000;
}
.step-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.step-img-box::before {
  width: 60%;
  /* height: 60%; */
  padding-bottom: 60%;
  background-color: #fdf2e9;
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  padding-bottom: 45%;
  background-color: #fae5d3;
}
.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}
.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}
.meal-ul ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.8rem;
}
.meal-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
  justify-self: center;
}

.meal-colored {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.meal-colored--vegetarian {
  background-color: #51cf66;
}
.meal-colored--vegan {
  background-color: #94d82d;
}
.meal-colored--paleo {
  background-color: #ffd43b;
}
.meal-tags {
  margin-bottom: 1.2rem;
}
.meal-pic {
  width: 100%;
}
.meal-grid {
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}
.col-1,
.col-2 {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 1.1rem 1.1rem;
  overflow: hidden;
}

.Lorem {
  margin: 5rem 0 5rem 0;
}

.meal-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.col-3 ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.col-1 ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.col-2 ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.list-icon {
  color: #e67e22;
  width: 3rem;
  height: 3rem;
}
.meal-button a {
  display: flex;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  justify-self: center;
  font-size: 18px;
  font-weight: 400;
  padding-top: 4.8rem;
}
.center {
  display: flex;
  justify-self: center;
}
.inner-grid-pic {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.content {
  padding: 9.6rem;
}
.grid--gallery {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}
.gallery-pic {
  width: 100%;
}

.inner-grid-content {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.inner-grid-content-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}
.starter-price,
.complete-price {
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}
.starter-price {
  justify-self: end;
}
.complete-price {
  justify-self: start;

  background-color: #fdf2e9;
}
.price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}
.price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}
.price-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
}
.price-list ul li span {
  display: inline-block;
}
.price-content {
  margin-bottom: 4.6rem;
  text-align: center;
}
.price-button {
  text-align: center;
  margin-top: 4.8rem;
}
.pricing-section {
  padding: 9.6rem 0;
}
.pricing-text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 4.8rem;
  margin-bottom: 9.6rem;
}

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

.featured--title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.featured--text {
  font-size: 1.8rem;
  line-height: 1.8;
}

.feature-icon {
  color: #e67e22;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}
.grid-cta {
  grid-template-columns: 2fr 1fr;
  background-color: #e67e22;
  border-radius: 1.1rem;
  overflow: hidden;
  border: none;
  background-image: linear-gradient(to right bottom, #eb984e, #e67e22);
}
.cta {
  padding: 4.8rem 0 12.8rem 0;
}
.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-content {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}

.cta-image {
  background-image: url(./content/img/eating.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
}
.cta-label-in-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-label-in-grid label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.cta-label-in-grid input,
.cta-label-in-grid select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-sign-up {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  border: none;

  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.2rem 3.2rem;
  border-radius: 9px;
  width: 100%;
}

.btn-sign-up:hover {
  background-color: #fff;
  color: #555;
}
.btn-div {
  align-self: end;
}

.cta-heading {
  margin-bottom: 3.2rem;
}

.footer-col-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer-col-list a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-logo {
  width: 100%;
}

.footer-links ul {
  list-style: none;
  display: flex;
  direction: row;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: grey;
}
.footer-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
footer {
  padding: 9rem 0;
}

.footer-copyright {
  margin-top: auto;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
}
.footer-col-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-col-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-logos {
  display: block;
  margin-bottom: 3.2rem;
  width: 75%;
}
.Address {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.footer-col-2-end {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
.footer-col-2-end a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  margin-top: auto;
}
hr {
  opacity: 20%;
}
