/**************************/
/* HEADER */
/**************************/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.6rem;
  padding: 0 4.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e6c9a2d5;
  z-index: 10;
  transition: all 0.3s ease;

}

.logo {
  height: 4.2rem;
}

/**************************/
/* 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: #6a4729;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  font-weight: 700;
}

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

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #b81209;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #880700;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: 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;
  left: 0;
  width: 100%;
  height: 8rem;
  padding: 0 4.8rem;
  background-color: rgba(230, 201, 162, 0.925);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #fdf2e9;
  padding: 0;
  margin: 0;
}

.hero {
  position: relative;
  height: 100vh; /* full screen height */
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-img {
  position: absolute;       /* move it behind content */
  top: 0;
  left: 0;
  width: 100%;             /* fill the entire hero */
  height: 100%;            /* full hero height */
  background-image: linear-gradient(
      to right bottom,
      rgba(2, 1, 1, 0.24),
      rgba(230, 34, 34, 0.123)
    ),
    url('../img/grilled-8.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;              /* behind the content */
}

.hero-whole-content {
  position: relative;       /* above background */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-top: 10rem;
  box-sizing: border-box;
}


/**************************/
/* ABOUT SECTION */ 
/**************************/

.section-about {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
  padding-top: 8rem;
}

.heading-about {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #4f351f;
}


.about-content {
  font-size: 1.6rem;
  letter-spacing: 0.75px;
  font-weight: 180;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #77502e;
  line-height: 3rem;
}

.about-container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.about-image-right {
  display: block;
  width: 50%;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(100px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Show class for animation */
.about-image-right.show {
  opacity: 1;
  transform: translateX(0);
}




/**************************/
/* VALUES SECTION */
/**************************/

.values {
  padding-top: 5.2rem;
  
}

.values-icon {
  color: #444141;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #f2c167;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.values-title {
  font-size: 2.4rem;
  color: #4f351f;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.values-text {
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: left;
}

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

.section-top-picks {
  padding: 4.6rem 0;
  margin-top: 15rem; 
}



.top-picks-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.top-picks-img-box {
  width: 350px;      /* fixed width */
  height: 350px;     /* fixed height, same for all boxes */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto; /* center horizontally */
  overflow: hidden;  /* hide overflow in case of cropping */
  border-radius: 25px; /* optional: round the container corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.404);
}

.top-picks-img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* cover the container while preserving aspect ratio */
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.top-picks-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}


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

.section-meals {
  padding: 3.6rem 0;
  margin-top: 14rem; 
}

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

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

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

.meal-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}


.meal-title {
  font-size: 2.2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #e67e22;
}

.meal-img {
  width: 100%;
}


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

.section-testimonials {
  background-color: #f7eee2;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

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

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

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  font-style: italic ;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #77502e;
}

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1 / 1; /* makes all images square */

}

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

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

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

/* .section-pricing {
  padding: 9.6rem 0;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

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

.plan-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

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

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
} */


/**************************/
/* KITCHEN SECTION */
/**************************/

.section-kitchen {
  padding: 9.6rem 0;
}

.our-kitchen {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  gap: 4.8rem;
  align-items: center;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.kitchen-img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.kitchen-text {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #77502e;
  line-height: 1.8;
  text-align: left;
}

.kitchen-heading {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 2.4rem;
  color: #4f351f;
}




/**************************/
/* CTA 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;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #eb984e, #e67e22);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #4f351f;
  background-color: #ed9f0e;
}

.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-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(2, 1, 1, 0.151),
      rgba(172, 25, 25, 0.274)
    ),
    url("../img/fil.jpg");
  background-size: cover;
  background-position: center;
}

.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;
  color: 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 *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 4.5rem 0;
  border-top: 1px solid #eee;
  background-color: #b81209;
}

.grid--footer {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr 1.5fr;
  position: relative;
  z-index: 1;
}

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

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

.logo-footer {
  filter: brightness(0) invert(1);

}

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

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #fff;

}



.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  margin-top: 5rem;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2.8rem;
  color: #fff;
  line-height: 2.2rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}

.address {
  margin-bottom: 2.4rem;
  color: #fff;
}

.logo-footer {
  height: 15rem;
}

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

}



.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #ed9f0e;
  transition: all 0.3s;
  color: #fff;
  
}

.footer-link:hover,
.footer-link:active {
  color: #ed9f0e;
}

