/* Style Sheet data */

/* Custom Variables */
/******************************************/

:root {
  --mainColor-200: #d39126;
  /* Theme Colors */
  --mainColor-300: #fffcf4;
  --mainColor-100: #ffffff;
  --mainColor-150: #eee;
  --mainColor-400: #333333;
  --mainColor-500: #100d1a;

  /* Container Width */
  --contentWidth: 1300px;
  --topNavWidth: 1310px;

  /* Font Family and Weight */
  --ff-main-content: "Open Sans", sans-serif;
  --ff-special: "Playfair Display", serif;
  --ff-wght-100: 100;
  --ff-wght-300: 300;
  --ff-wght-400: 400;
  --ff-wght-500: 500;
  --ff-wght-700: 700;
  --ff-wght-900: 900;
}
/**** Fixing the testimonial slider ***/
.owl-wrapper {
  max-width: var(--contentWidth) !important;
}
html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--ff-main-content);
  font-weight: var(--ff-wght-300);
}
/* CSM Classes to make everything work properly */
.page-header {
  background-color: var(--mainColor-150);
}
.page-title {
  max-width: var(--contentWidth);
  margin: 0 auto;
  padding: 50px 0;
  color: var(--mainColor-500);
}

.content {
  max-width: var(--contentWidth);
  margin: 20px auto 0 auto;
  min-height: 36vh !important;
}
.box {
  padding: 0 !important;
  border: 0 !important;
}

/*********************************/
a {
  text-decoration: none;
  padding: 5px 10px;
  font-weight: 600;
  color: #212121;
  transition: all 0.3s;
}

.top-nav {
  background-color: var(--mainColor-400);
  margin-bottom: 10px;
  max-width: 100%;
}

.top-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--topNavWidth);
  margin: 0 auto;
  color: var(--mainColor-100);
  font-weight: var(--ff-wght-300);
  font-size: 13px;
  padding: 5px;
}
.top-nav-phone {
  padding-right: 10px;
}
.top-nav-socialmedia a {
  color: var(--mainColor-100);
}
.top-nav-socialicon {
  margin-right: 10px;
}
.top-nav-socialicon a:hover {
  color: var(--mainColor-200);
}
.icon {
  padding-right: 5px;
}
header {
  border-bottom: 1px solid var(--mainColor-400);
}
.top-container {
  max-width: var(--contentWidth);
  margin: 0 auto;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-logo {
  width: 250px;
}
ul.main-menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
ul.main-menu li {
  list-style: none;
  padding: 24px 4px;
  position: relative;
  transition: 0.5s;
  display: block;
}

ul.main-menu li > a {
  padding: 5px 24px;
  font-weight: var(--ff-wght-400);
}
ul.main-menu li a:hover {
  color: var(--mainColor-200);
}

/* Main Slider block */
.main-slider {
  background: url("https://images.pexels.com/photos/6969870/pexels-photo-6969870.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
}
.main-slider-container {
  max-width: var(--contentWidth);
  margin: 0 auto;
  position: relative;
  top: 45vh;
  text-align: left;
  color: var(--mainColor-100);
  text-shadow: rgba(0, 0, 0, 0.641) 0px 3px 8px;
}
.slider-content-medium {
  font-size: 1.1rem;
  font-weight: var(--ff-wght-500);
  letter-spacing: 2px;
  float: left;
  clear: left;
}
.slider-content-large {
  font-size: min(10vw, 80px);
  font-family: var(--ff-special);
  font-weight: var(--ff-wght-700);
  float: left;
  clear: left;
  line-height: 80px;
}
.slider-content-small {
  float: left;
  clear: left;
  font-size: 18px;
  margin-top: 20px;
}
.slider-content-button {
  float: left;
  clear: left;
  width: 180px;
  padding: 15px 20px;
  margin-top: 30px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.657);
  color: var(--mainColor-200);
  border-color: var(--mainColor-200);
  transition: all 0.3s;
  cursor: pointer;
}
.slider-content-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--mainColor-100);
  border-radius: 25px;
}

/*************************************/
/** Main Body Home Page Styles */

/* Intro to Website */

.intro-wrapper {
  max-width: var(--contentWidth);
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.intro-content h2 {
  font-size: 3.4rem;
  line-height: 60px;
  font-weight: var(--ff-wght-700);
  margin-right: 30px;
}
.intro-content h2::first-letter {
  color: var(--mainColor-200);
  font-size: 3.7rem;
  font-weight: var(--ff-wght-900);
}
.intro-content p {
  margin-bottom: 60px;
  font-size: 18px;
  color: var(--mainColor-400);
}
.intro-image img {
  width: 100%;
  height: 100%;
}
.intro-button {
  width: 180px;
  padding: 20px 25px;
  margin-top: 30px;
  border: none;
  background-color: var(--mainColor-200);
  color: var(--mainColor-100);
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.intro-button:hover {
  background-color: var(--mainColor-500);
  color: var(--mainColor-100);
}
/* Kitchen Offers */
.kitchen-offers {
  text-align: center;
  margin-bottom: 100px;
}
.kitchen-offers h2 {
  font-stretch: extra-expanded;
  font-weight: var(--ff-wght-700);
}

.kitchen-offers-wrapper {
  max-width: var(--contentWidth);
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  line-height: 10px;
  text-align: left;
}
.kitchen-offers-wrapper h4 {
  font-size: 1rem;
  font-weight: var(--ff-wght-700);
}
.kitchen-offers-wrapper div img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.kitchen-offers-wrapper div img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
/* Innovation */
.innovation-wrapper {
  max-width: var(--contentWidth);
  margin: 80px auto;
  display: grid;
  grid-template-columns: 58% 40%;
  grid-gap: 20px;
  align-items: center;
}
.innovation-image img {
  width: 100%;
}

.innovation-content h2 {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-stretch: extra-expanded;
  font-weight: var(--ff-wght-700);
  line-height: 50px;
}

/* Six Steps */

.six-steps {
  background-image: url("https://images.pexels.com/photos/4022121/pexels-photo-4022121.jpeg");
  background-repeat: none;
  background-size: cover;
  color: var(--mainColor-100);
  text-align: center;
  padding: 30px 0;
  margin: 40px 0;
}
.six-steps h2 {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-stretch: extra-expanded;
  font-weight: var(--ff-wght-700);
}
.first-word {
  position: relative;
  color: var(--mainColor-100);
}
.first-word::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 95px;
  height: 2px;
  background-color: var(--mainColor-200);
}

.steps-wrapper {
  max-width: var(--contentWidth);
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  grid-gap: 20px;
}

.steps-wrapper div {
  text-align: center;
  padding: 100px 40px;
  background-color: var(--mainColor-100);
  border-radius: 5px;
  color: var(--mainColor-500);
}
.steps-wrapper div h4 {
  font-size: 1.2rem;
  font-weight: var(--ff-wght-700);
}

/* Testimonials */
.container {
  text-align: center;
}
.container h2 {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-stretch: extra-expanded;
  font-weight: var(--ff-wght-700);
  line-height: 50px;
}
.row {
  max-width: var(--contentWidth);
  margin: 40px auto;
}

/* Back to top button style */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

/**** Footer ****/
.footer-wrapper {
  margin-top: auto;
}
.footer {
  margin: 40px 0 0 0;
  background-color: var(--mainColor-500);
  color: var(--mainColor-100);
  padding-block: 2em 1em;
}
.footer-content {
  max-width: var(--contentWidth);
  margin: 40px auto;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo img {
  max-width: 300px;
}
.footer-subscribe {
  position: relative;
}
.footer-subscribe .email {
  padding: 15px 22px;
  border: 1px solid var(--mainColor-200);
  border-radius: 5px;
  background-color: var(--mainColor-500);
  margin-top: 15px;
}
.footer-subscribe .email-button {
  padding: 10px;
  position: relative;
  background-color: var(--mainColor-200);
  right: 45px;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer Nav ***/

.footer-nav {
  background-color: var(--mainColor-500);
  color: var(--mainColor-100);
}
.footer-nav-content {
  max-width: var(--contentWidth);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  position: relative;
}
.footer-nav-content a {
  color: var(--mainColor-100);
}

.poweredBy a {
  color: var(--mainColor-200);
  font-weight: var(--ff-wght-300);
  transition: all 3s;
  position: relative;
}
.poweredBy a &::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0.1em;
  background-color: var(--mainColor-200);
  opacity: 1;
  transform: translate3d(-100%, 0px, 0px);
  transition: opacity 300ms ease 0s, transform 300ms ease 0s;
}

/* Input styles */

/**************************/
/***** Form Styling Input Fields *****/
.input-field {
  width: 100%;
  padding: 12px 20px;
  -webkit-appearance: none;
  /* remove the strong OSX influence from Webkit */
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  background-color: #fbfbfb;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  color: #9a9a9a;
}
.input-field:focus {
  outline: 1px solid var(--mainColor-200) /* DP Yellow */;
}
.input-button {
  width: 150px;
  padding: 12px 20px;
  background-color: var(--mainColor-200);
  border: 0;
  color: #fff;
  border-radius: 5px;
}
.input-button:hover {
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.input-button:hover {
  background-color: var(--mainColor-400); /* Yellow */
  color: #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(60, 72, 118, 0.14),
    0 3px 1px -2px rgba(60, 72, 118, 0.2), 0 1px 5px 0 rgba(60, 72, 118, 0.12);
  box-shadow: 0 2px 2px 0 rgba(60, 72, 118, 0.14),
    0 3px 1px -2px rgba(60, 72, 118, 0.2), 0 1px 5px 0 rgba(60, 72, 118, 0.12);
}
/*******************************/
.contact-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-block-start: 1.5rem;
  margin-block-end: 0;
}
.contact-icon {
  width: 64px;
}
.contact-icon img {
  display: block;
  width: 100%;
}

/***********************/
/** Navigation responsive **/
/***********************/
/* Styling Nav Icon behaviour */
.checkbtn {
  color: #fff;
  font-size: 30px;
  float: right;
  line-height: 70px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}

@media (max-width: 890px) {
  .main-slider,
  .intro,
  .kitchen-offers,
  .innovation,
  .six-steps,
  .container {
    padding: 0 10px;
  }
  .six-steps {
    padding-bottom: 20px;
  }
  .checkbtn {
    display: block;
    color: var(--mainColor-200);
  }
  .main-menu-container ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 130px;
    left: -100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.641);
    transition: all 0.5s;
    z-index: 4;
    display: block;
  }
  .main-menu-container ul li,
  .main-menu-container ul li a {
    display: block;
    color: var(--mainColor-100);
  }
  .main-menu-container ul li:hover {
    background-color: rgba(41, 45, 60, 0.5);
    transition: 0.5s;
  }

  #check:checked ~ ul {
    left: 0;
  }

  .wrapper,
  .innovation-wrapper,
  .intro-wrapper,
  .steps-wrapper {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  /* Grid Spans */
  .span1 {
    grid-column: span 1;
  }

  .span2 {
    grid-column: span 1;
  }

  .span3 {
    grid-column: span 1;
  }

  .span4 {
    grid-column: span 1;
  }

  .top-container,
  .page-title,
  .top-nav-wrapper {
    padding: 10px;
  }
}
