* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #333;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

/* Header Styles */
.header {
  display: flex;
  color: #fff;
  padding: 1rem 0;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 0 4.8rem;
  border-bottom: 0.8rem #e67e22;
  height: 7.6rem;
  position: sticky;
  top: 0rem;
  z-index: 10;
}

.site-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}

.logo {
  height: 5.2rem;
}

.site-name {
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 4.4rem;
  font-weight: 700;
  color: #e67e22;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.main-nav-link {
  display: inline-block;
  text-decoration: none;
  color: #eee;
  font-weight: 600;
  font-size: 2.4rem;
  transition: color 0.3s, transform 0.3s;
  position: relative;
  padding-bottom: 5px;
}

.main-nav-link::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #fcaa4d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}

.main-nav-link:hover::after {
  width: 100%;
}

.main-nav-link:hover,
.main-nav-link:focus {
  color: #fcaa4d;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: white;
  cursor: pointer;
  stroke: #e67e22;
  display: none;
  border-radius: 8px;
}

.icon-mobile-nav {
  height: 4.4rem;
  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: rgb(0, 0, 0);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .main {
  margin-top: 9.6rem;
}

main {
  margin-top: -7.6rem;
  height: 100vh;
  position: relative;
  background-image: linear-gradient(
      to top,
      rgba(35, 35, 35, 0.6),
      rgba(35, 35, 35, 0.2)
    ),
    url(../img/hero.jpg);
  background-size: cover;
  color: #fff;
}

nav {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

.primaryHead {
  max-width: 130rem;
  margin: 0 auto;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.primaryHeadInner {
  width: 95%;
}

h1 {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 3.2rem;
}

p {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 4.8rem;
}

.primaryInfo {
  color: #fee7cc;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.btn--full {
  margin-right: 2rem;
}

.btn--full:link,
.btn--full:visited {
  background-color: #fff;
  color: #fff;
  border: 0.8rem solid #e67e22;
}

.btn--full:hover,
.btn--full:active {
  background-color: #fff;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #fff;
}

.store {
  width: 20rem;
  height: 6.6rem;
  transition: transform 0.3s ease;
  background-color: white;
  border-radius: 90px;
}

.store:hover {
  transform: scale(105%);
  border: 0.3rem solid #e67e22;
}

.play {
  margin-right: 1rem;
}

.downloads-info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.download-imgs {
  display: flex;
}

.download-imgs img {
  height: 3.8rem;
  width: 3.8rem;
  border-radius: 50%;
  margin-right: -1rem;
  border: 3px solid #fdf2e9;
}

.download-imgs img:last-child {
  margin: 0;
}

.download-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

.download-text span {
  color: orange;
  font-weight: 700;
}

/****************************/
/****************************/
/****************************/

.container-downloads {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 6.6rem;
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.subheading {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #7c4413;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.section-downloads {
  padding: 0rem 9.6rem;
  padding-top: 19rem;
}

.grid--3-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.download {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.2);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
  background-color: #fff3e6;
}

.download:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.download-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.download-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
  background-color: #51cf66;
}

.download-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.download-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.download-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.download-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #e67e22;
}

.download-img {
  width: 100%;
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

/* Features Section */
.featureSec {
  padding-bottom: 0rem 3.2rem;
  padding-top: 17rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 6.4rem;
  row-gap: 1.6rem;
  text-align: center;
  padding: 1rem 10rem;
}

.features-title {
  font-size: 2.4rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.features-text {
  font-size: 2rem;
  color: #666;
  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 svg {
  width: 4.8rem;
  height: 4.8rem;
  stroke: #e67e22;
  transition: transform 0.3s ease;
}

.grid svg:hover {
  transform: scale(1.1);
}

.testimonials {
  background-color: #fdf2e9;
  padding-top: 17rem;
}

.shadow-effect {
  background: #fff;
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#customers-testimonials .shadow-effect p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0 0 1.7rem 0;
  font-weight: 400;
}
.testimonial-name {
  font-size: 1.8rem;
  font-weight: 400;
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #fc9d33;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fdf2e9;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
#customers-testimonials .item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 5rem;
  opacity: 0.5;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 20rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  border: 0.3rem solid #fcaa4d;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #fc9d33;
  transform: translate3d(0px, -50%, 0px) scale(0.4);
  height: 3rem;
  width: 6rem;
  border-radius: 50px;
}
#customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #767676;
  display: inline-block;

  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  margin: 0 0.15rem 0.4rem;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
}

/* Contact Section */
.section-contact {
  padding-top: 13rem;
}

.contact {
  margin: 4.8rem 0;
}

.contact {
  display: grid;
  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, #fcaa4d, #fc9d33);
  overflow: hidden;
}

.contact-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}

.contact .heading-secondary {
  color: inherit;
  margin-bottom: 2.2rem;
}

.contact-text {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 4.8rem;
}

.contact-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ),
    url("../img/image001-1.jpg");
  background-size: cover;
  background-position: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.2rem;
}

.contact-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-form input,
textarea {
  width: 100%;
  padding: 0.9rem;
  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);
}

.contact-form input::placeholder {
  color: #aaa;
}

.contact-form textarea::placeholder {
  color: #aaa;
}

.contact *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

.message {
  grid-column: 1/-1;
  grid-row: 2;
  position: relative;
}

.message input {
  height: 100%;
}

.message input::placeholder {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  padding: 1.2rem;
  grid-column: 1/-1;
  align-self: center;
  margin-top: 2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 3.2rem;
  border-top: 1px solid #eee;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
}

.copyright {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
  margin-bottom: 0;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.4rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

.icon {
  width: 2.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
  margin-bottom: 1rem;
}

.icon:hover {
  filter: grayscale(0%);
  transform: scale(1.3);
}

.icon *:focus {
  filter: grayscale(0%);
  box-shadow: 0 0 0 0rem rgba(230, 125, 34, 0.5);
}

.social {
  stroke: #eee;
}

.applivity {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: #767676;
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}

strong {
  font-weight: 500;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.6rem rgba(230, 125, 34, 0.5);
}

/* Privacy Policy Section */
.privacyPolicy {
  padding-bottom: 0rem 3.2rem;
  padding-top: 5rem;
  padding-left: 15%;
  padding-right: 15%;
}
