* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Exo 2", sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem 4rem;
  z-index: 1000;
}

#header .fa-hamburger {
  font-size: 4rem;
  z-index: 10000;
  color: #856b39;
  cursor: pointer;
  display: none;
}

#header .logo img {
  height: 5rem;
}

#header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style: none;
}

#header nav ul li {
  margin-right: 4rem;
}

#header nav ul li a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

#header nav ul li a:hover {
  color: #856b39;
  text-decoration: none;
}

.header-active {
  background: #150f0b;
  height: 6rem;
  -webkit-box-shadow: 0.2rem 0 0.5rem #000;
  box-shadow: 0.2rem 0 0.5rem #000;
}

.header-active nav ul {
  margin: 0;
}

#home {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.6)),
    to(rgba(0, 0, 0, 0.6))
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  position: relative;
}

#home .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1000px;
}

#home .content h1,
#home .content h2,
#home .content p {
  text-align: left;
}

#home .content button {
  margin-top: 1rem;
}

#home .content h1 {
  font-size: 5rem;
  font-family: "lemonada", sans-serif;
  font-weight: bolder;
  text-shadow: 0.1rem 0.1rem 0.3rem #333;
  color: #ad9a74;
}

#home .content h2 {
  font-size: 3.5rem;
  font-family: "lemonada", sans-serif;
  font-weight: bolder;
  text-shadow: 0.1rem 0.1rem 0.3rem #333;
  color: #fff;
  margin: 1rem 0;
}

#home .content p {
  font-size: 1.6rem;
  color: #ccc;
}

#home .content button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 14rem;
  background: #856b39;
}

#home .content button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ad9a74;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

#home .content button:hover::before {
  width: 100%;
}

#home .video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
}

#home .video-container .vid {
  position: absolute;
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}

#home .video-container .vid1 {
  display: block;
}

#home .controls {
  position: absolute;
  bottom: 14%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

#home .controls .dots {
  height: 2rem;
  width: 2rem;
  cursor: pointer;
  background: #856b39;
  margin: 0 1rem;
}

#home .controls .dots:hover {
  background: #ad9a74;
}

#best-seller {
  background: #000;
  min-height: 100vh;
}

#best-seller .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 7rem;
  margin-bottom: 2rem;
  color: #fff;
}

#best-seller .heading h1 span {
  color: #856b39;
}

#best-seller .heading p {
  color: #ccc;
  font-size: 2rem;
}

#best-seller .card-container {
  width: 95%;
  margin: 7rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#best-seller .card-container .card {
  height: 40rem;
  width: 30rem;
  background: #856b39;
  padding: 1rem;
  margin: 2rem;
  text-align: center;
}

#best-seller .card-container .card img {
  height: 50%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#best-seller .card-container .card p {
  font-size: 1.4rem;
  margin: 2rem 0;
}

#best-seller .card-container .card button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 3.5rem;
  width: 14rem;
  background: #150f0b;
  color: #856b39;
}

#best-seller .card-container .card button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ad9a74;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

#best-seller .card-container .card button:hover::before {
  width: 100%;
}

#best-seller .card-container .card button:hover {
  color: #333;
}

#best-seller .card-container .card:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#about .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 7rem;
  margin-bottom: 2rem;
}

#about .heading h1 span {
  color: #856b39;
}

#about .content {
  margin: 5rem auto;
}

#about .content p {
  font-size: 2rem;
}

#about .content button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 14rem;
  background: #150f0b;
  color: #fff;
}

#about .content button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ad9a74;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

#about .content button:hover::before {
  width: 100%;
}

#about .content button:hover {
  color: #333;
}

#about .image img {
  width: 30vw;
}

#dish {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -15rem; /* Adjust this value as needed */
}

#dish .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 0rem;
  margin-bottom: 2rem;
}

#dish .heading h1 span {
  color: #856b39;
}

#dish .box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 90%;
  max-width: 120rem;
}

#dish .box-container .box {
  height: 20rem;
  border-radius: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0.5rem #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#dish .box-container .box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#dish .box-container .box .info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(51, 51, 51, 0.6);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  color: #ccc;
  -webkit-transform: scale(0);
  transform: scale(0);
}

#dish .box-container .box .info h3 {
  font-size: 3rem;
}

#dish .box-container .box .info p {
  font-size: 1.3rem;
  border-bottom: 0.2rem solid #ad9a74;
  border-top: 0.2rem solid #ad9a74;
  margin: 1rem 2rem;
}

#dish .box-container .box .info button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 14rem;
}

#dish .box-container .box .info button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ad9a74;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

#dish .box-container .box .info button:hover::before {
  width: 100%;
}

#dish .box-container .box:hover .info {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#contact {
  min-height: 100vh;
  width: 100vw;
  background: url(../images/contact-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#contact .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 7rem;
  margin-bottom: 2rem;
}

#contact .heading h1 span {
  color: #ad9a74;
}

#contact form {
  background: #232323;
  padding-top: 2rem;
  margin: 1rem 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 2rem #150f0b;
  box-shadow: 0 0 2rem #150f0b;
}

#contact form .inputBox {
  position: relative;
  text-align: center;
}

#contact form .inputBox input,
#contact form .inputBox textarea {
  outline: none;
  border: 0.2rem solid #856b39;
  border-radius: 0.2rem;
  margin: 2rem 0;
  padding: 0 1rem;
  background: none;
  height: 4rem;
  width: 90%;
  font-size: 2rem;
}

#contact form .inputBox input:focus ~ h3,
#contact form .inputBox input:valid ~ h3,
#contact form .inputBox textarea:focus ~ h3,
#contact form .inputBox textarea:valid ~ h3 {
  font-size: 1.6rem;
  left: 6%;
  top: -0.5rem;
  color: #ad9a74;
}

#contact form .inputBox textarea {
  padding: 1rem;
  resize: none;
  height: 20rem;
  color: #ccc;
}

#contact form .inputBox h3 {
  position: absolute;
  top: 3rem;
  left: 7%;
  color: #ccc;
}

#contact form input[type="submit"] {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #ad9a74;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 12rem;
  margin-bottom: 2rem;
  margin-left: 4%;
  background: #ad9a74;
  color: #150f0b;
}

#contact form input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #856b39;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

#contact form input[type="submit"]:hover::before {
  width: 100%;
}

#contact form input[type="submit"]:hover {
  color: #150f0b;
  background: #856b39;
}

#footer {
  background: #333;
}

#footer h1 {
  font-size: 2rem;
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  color: #565656;
}

#footer h1 span {
  color: #ad9a74;
}

#footer .brand {
  text-align: center;
  margin-top: 2rem;
}

#footer .brand a .logo img {
  height: 4rem;
}

.logo2 img {
  height: 18rem;
  width: auto;
}

#footer .brand .icons a {
  font-size: 2rem;
  margin: 2rem 1rem;
  color: #856b39;
}

#footer .brand .icons a:hover {
  color: #ad9a74;
}

#footer .footer-links {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  margin: 1rem 0;
}

#footer {
  background: #000000;
}
#footer .footer-links h3 {
  font-size: 2.2rem;
  color: #ad9a74;
}

#footer .footer-links a {
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
}

#footer .letter h2 {
  font-size: 2rem;
  margin: 2rem 0;
  color: #ccc;
}

#footer .letter input[type="text"] {
  border: 0.2rem solid #856b39;
  outline: none;
  background: none;
  height: 4rem;
  width: 22rem;
  padding: 0 1rem;
  font-size: 1.3rem;
  color: #fff;
}

#footer .letter input[type="submit"] {
  outline: none;
  border: none;
  border-radius: 5rem;
  background: #856b39;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 12rem;
  margin: 1rem 0;
}

#footer .letter input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ad9a74;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

#footer .letter input[type="submit"]:hover::before {
  width: 100%;
}

#footer .letter input[type="submit"]:hover {
  color: #333;
  background: #ad9a74;
}

.fa-times {
  -webkit-transform: skew(-180deg) rotate(180deg);
  transform: skew(-180deg) rotate(180deg);
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }
  #header .fa-hamburger {
    display: block;
  }
  #header nav {
    position: fixed;
    top: 0;
    left: -120%;
    height: 100vh;
    width: 35rem;
    background: #000;
  }
  #header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
  }
  #header nav ul li {
    margin: 2rem 0;
  }
  #header nav ul li a {
    font-size: 3.5rem;
    border-radius: 5rem;
  }
  #header nav ul li a:hover {
    padding: 0.5rem 7.5rem;
    color: #333;
    background: #ad9a74;
  }
  #header .nav-toggle {
    left: 0%;
  }
  #about .image {
    text-align: center;
  }
  #about .image img {
    width: 70vw;
  }
}
