/* 
--- 01 TYPOGRAPHY SYSTEM

- FONT SIZE SYSTEM(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 HEIGHT:
DEFAULT: 1
small: 1.05
Medium: 1.2
Paragraph default: 1.6
large: 1.8

- SPACING SYSTEM
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

--- BORDER RADIUS
DEFAULT: 9PX

--- 02 COLORS
PRIMARY: #E67E22,

Tints:#fdf2e9, #cf711f
Shades: #2e1907;
Accents:
Greys
#555
#333
#fae5d3

LETTER SPACING
0.75PX
0.5PX
--- SHADOWS

--- BORDER-RADIUS- 9px, 11px

--- WHITESPACE

letter-spacing: 0.75px, -0.5px;

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    font-size: 62.5%;
    overflow-x: hidden;
  
    /* Does not work on safari */
    /* scroll-behavior: smooth; */
  }
  body {
    font-family: "Rubik", sans-serif;
    line-height: 1;
    font-weight: 500;
    color: #555;
    /* Only works if there is nothing absolutely positioned in relation to body*/
    overflow-x: hidden;
  }
  /* *************************************** */
  /* header section*/
  .header {
    display: flex;
    justify-content: space-between;
    background-color: #042b14;
    align-items: center;
    height: 9.6rem;
    padding: 0 4.2rem;
    position: relative;
  }
  
  .logo {
    height: 5.2rem;
  }
  /* *************************************** */
  /* navigation section*/
  .main-nav-list {
    display: flex;
    gap: 4.8rem;
    list-style: none;
    align-items: center;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
  }
  .main-nav-link:hover,
  .main-nav-link:active {
    color: #FF8C00;
    border-radius: 9px;
  }
  .main-nav-link.nav-cta:link,
  .main-nav-link.nav-cta:visited {
    color: #fff;
    background-color:#FFA500;
    padding: 1.2rem 2.4rem;
    border-radius: 9px;
  }
  .main-nav-link.nav-cta:hover,
  .main-nav-link.nav-cta:active {
    background-color:#FF8C00;
  }
  
  /* *************************************** */
  /* Mobile*/
  .btn-mobile-nav {
    border: none;
    background-color: none;
    cursor: pointer;
  
    display: none;
  }
  
  .icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333 ;
  }
  
  .icon-mobile-nav[name="close-outline"] {
    display: none;
  }
  
  
  
  /* *************************************** */
  /* STICKY NAVIGATION*/
  .sticky .header{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #042b14;
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  }
  .sticky .section-hero{
    margin-top: 9.6rem;
  }
  
  
  /* *************************************** */
  /* hero section*/
  .section-hero {
    background-color: #042b14;
    /* background: linear-gradient(to bottom, #0D572A, #98FB98); */
    padding: 9.6rem;
  }
  
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 130rem;
    margin: 0 auto;
    gap: 9.6rem;
  }
  
  .hero-img {
    width: 115%;
  }
  .heading-primary {
    font-size: 3rem;
    margin-bottom: 4rem;
  
    font-weight: 600;
    color: #fff;
    /* color: #2e1907; */
    line-height: 1.05;
    letter-spacing: -0.5;
    margin-bottom: 3.2rem;
  }
  .hero-description {
    font-size: 3rem;
    line-height: 1.6;
    letter-spacing: -0.5;
    margin-bottom: 4.2rem;
    color: #fff;
  }
  /* *************************************** */
  /* buttons and links*/
  .btn,
  .btn:link,
  .btn:visited {
    display: inline-block;
    font-size: 2rem;
    text-decoration: none;
  
    padding: 1.6rem 3.2rem;
    border-radius: 9px;
    /* transition: background-color 0.3s; */
    transition: all 0.3s;
  
    /* Only necessary for .btn itself */
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  
  .btn--full:link,
  .btn--full:visited {
    background-color: #FF8C00;
    color: #fff;
  }
  .btn--full:hover,
  .btn--full:active {
    background-color: #FF8C00;
    color: #fff;
  }
  .btn--outline:link,
  .btn--outline:visited {
    background-color: #FFA500;
    color: #fff;
  }
  .btn--outline:hover,
  .btn--outline:active {
    background-color: #FF8C00;
    box-shadow: inset 0 0 0 3px #FF8C00;
    color: #fff;
  }
  .margin-right-sm {
    margin-right: 1.6rem;
  }
  
  /*********************************************/
  /* delivered section*/
  .delivered-meals {
    display: flex;
    align-items: center;
    gap: 2rem;
    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-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
  }
  .delivered-imgs img:last-child {
    margin-right: 0;
  }
  .delivered-text span {
    color: #fff;
    font-weight: 700;
  }

  /* About us  */
.about{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 5rem;
  justify-content: space-between;
  align-items: flex-start;
}


.about-us {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.about-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 4rem;
  margin-top: 2.5rem;
}

.about-header h2 span {
  color: #333;
}

.about-header p {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2.5rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-icon {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 2rem;
  color: #555;
  margin-bottom: 1rem;
}

.about-card p {
  font-size: 1.8rem;
  color: #666;
  line-height: 1.5;
}

  
  /*********************************************/
  /* Section How*/
  .section-how {
    padding: 9.6rem 0;
  }
  .container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 3.2rem;
  }
  .grid {
    display: grid;
    column-gap: 6.4rem;
    row-gap: 9.6rem;
  
    /* margin-bottom: 9.6rem; */
  }
  /* .grid:last-child {
    margin-bottom: 0;
  } */
  .grid:not(:last-child) {
    margin-bottom: 9.6rem;
  }
  .grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--5-cols {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .grid--center-v {
    align-items: center;
  }
  .step-img {
    width: 65%;
    /* alternative method 
    z-index: 10*/
  }
  .step-img1{
    width: 50%;
  }


  
  .heading-secondary {
    font-weight: 700;
    color: #333;
    /* color: #2e1907; */
    letter-spacing: -0.5px;
    font-size: 4.4rem;
    line-height: 1.2;
    margin-bottom: 9.6rem;
  }
  .subheading {
    display: block;
    /* display set to block because we used a span */
    font-size:2rem;
    font-weight: 500;
    color: #333 ;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    letter-spacing: 0.75px;
  }
  .step-number {
    font-size: 9.8rem;
    font-weight: 600;
    color: #333 ;
    margin-bottom: 1.2rem;
  }
  .heading-tertiary {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 3.2rem;
  }
  .step-description {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .step-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .step-img1{
    width: 50%;
  }
  /* .step-img-box::before,
  .step-img-box::after {
    content: "";
    display: block;
    width: 60%;
    height: 60%; */
    /* 60% of parent's width */
    /* padding-bottom: 60%;
    border-radius: 50%;
  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }  */
   /* .step-img-box::before {
    width: 60%;
    height: 60%; */
    /* 60% of parent's width */
    /* padding-bottom: 60%;
    background-color: #1c4a3f;
    z-index: -2;
  }  */
   /* .step-img-box::after {
    width: 45%;
    padding-bottom: 50%;
    background-color: #fff;
    z-index: -1;
  } */
  
  /*********************************************/
  /* 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: #e53935;
    font-size: 2rem;
  }
  .logos {
    display: flex;
    justify-content: space-around;
  }
  .logos img {
    height: 12rem;
    filter: brightness(-10);
    opacity: 50%;
  }
  .description{
    font-size: 1.6rem;
    line-height: 1.8;
    align-items: center;
    color: #333;
  }
  /*********************************************/
  
  .list-icon {
    width: 3rem;
    height: 3rem;
    color: #fff;
  }
  *:focus {
    /* outline: none; */
    /* outline:4px dotted #e67e22 ;
    outline-offset: 8px; */
    /* box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.5); */
  }
  .margin-bottom-md {
    margin-bottom: 4.8rem !important;
  }
  .all-recipes {
    text-align: center;
    font-size: 1.8rem;
  }
  .link:link,
  .link:visited {
    display: inline-block;
    color: #e67e22;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: all 0.3s;
  }
  .link:hover,
  .link:active {
    color: #cf711f;
    border-bottom: 1px solid transparent;
  }
  .center-text {
    text-align: center;
  }
  
  /*********************************************/
  
  
  /*********************************************/
  /* Footer section*/
  .footer {
    padding: 12.8rem 0;
    border-top: 1px solid #eee;
    background-color: #042b14;
    color: #fff;
  }
  .grid--footer {
    grid-template-columns: 1fr 1fr;
  }
  .logo-col {
    display: flex;
    flex-direction: column;
  }
  .footer-heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
  }
  .footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  .footer-link:link,
  .footer-link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.3s;
  }
  .footer-link:hover,
  .footer-link:active {
    color: #555;
  }
  .footer-logo {
    display: block;
    margin-bottom: 3.2rem;
    /* height: 4.2rem; */
  }
  .social-links {
    list-style: none;
    display: flex;
    gap: 2.4rem;
  }
  .social-icons {
    height: 2.4rem;
    width: 2.4rem;
  }
  .copyright {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.6;
    margin-top: auto;
  }
  .contacts {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .address {
    margin-bottom: 2.4rem;
    color: #fff;
  }
  .footer-email{
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
  .allrights{
    font-size: 1.5rem;
  }
  
  /*********************************************/
 
  /*********************************************/
  /* FEATURES */
  .feature-title {
    font-size: 2.4rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 1.6rem;
    margin-top: 2rem;
  }
  .feature-text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .feature-icon {
    color: #e67e22;
    height: 3.2rem;
    width: 3.2rem;
    background-color: #fdf2e9;
    border-radius: 50%;
    padding: 1.6rem;
    margin-bottom: 3.2rem;
  }
  .feature-img{
    width: 10rem;
    height: 10rem;
    border-radius: 50%; /* Circular shape */
    margin-bottom: 2rem;
    object-fit: cover; 
  }
  /*********************************************/
  /* CALL TO ACTION SECTION*/
  .section-cta {
    /* top/right/bottom/left */
    /* padding: 9.6rem 0 12.8rem 0; */
  
    /* top/ horizontal/ left */
    padding: 4.8rem 0 12.8rem;
  }
  
  .cta {
    display: grid;
    /* 2/3 = 66.6% + 1/3 = 33.3% */
    grid-template-columns: 2fr 1fr;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
    border-radius: 11px;
    background-image: linear-gradient(to right bottom, #042b14, #042b14);
    overflow: hidden;
  }
  
  .cta-img {
    width: 100%;
    height: 0%;
  }
  .cta-img-box {
    background-image: linear-gradient(
        to right bottom,
        rgba(12, 6, 1, 0.35),
        rgba(10, 5, 0, 0.35)
      ),
      url("images/happy\ man.jpg");
    background-size: cover;
    background-position: center;
  }

  .cta-img-box1 {
    background-image: linear-gradient(
        to right bottom,
        rgba(12, 6, 1, 0.35),
        rgba(10, 5, 0, 0.35)
      ),
      url("images/tm7.jpg");
    background-size: cover;
    background-position: center;
  }
  .cta-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4.8rem;
  }
  .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-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 input,
  .cta-form select {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-family: inherit;
    border: none;
    background-color: #fdf2e9;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .cta-form input::placeholder {
    color: #aaa;
  }
  
  .cta-form select {
  }
  
  .btn {
    display: inline-block;
    font-size: 2rem;
    text-decoration: none;
  
    padding: 1.6rem 3.2rem;
    border-radius: 9px;
    /* transition: background-color 0.3s; */
    transition: all 0.3s;
  
    /* Only necessary for .btn itself */
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn--form {
    background-color: #FFA500;
    color: #fff;
    align-self: end;
    padding: 1.2rem;
  }
  .btn--form:hover {
    background-color: #FF8C00;
    color: #fff;
  }
  /* .cta *:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
  } */
  .area{
    color: #fff;
  }

  .heading-testimonials{
    font-size: 3rem;
    margin-bottom: 5rem;
    color: #333;
  }

.box{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  
}
.text>h3{
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.text>p{
  font-size: 2rem;
  color: #fff;
}

.contact-number{
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
}


/* FAQ Section */
.section-title {
  /* font-size: 2.5rem; */
  /* text-align: center; */
  /* margin-bottom: 2rem; */
  color: #333;
  
}
.faq-title{
  font-size: 3rem;
  margin-bottom: 2rem;
  margin-top: 8rem;
 
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  color: #444;
  margin-bottom: 2rem;
}

.faq-question h3 {
  font-size: 2rem;
  flex-grow: 1;
  margin-left: 1rem;
}

.faq-icon {
  font-size: 1.8rem;
  color: #e53935;
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  color: #666;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-item.open .faq-answer {
  max-height: 100px;
}

.faq-item.open .toggle-icon {
  transform: rotate(180deg);
}

