* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* > img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  background: url("/images/background2.jpg") repeat center;
  background-size: cover;
  font-family: "Hubballi", cursive;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

p {
  line-height: 1.2em;
  margin-bottom: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: "Libre Baskerville", serif;
  font-weight: 250;
}

h1 {
  font-size: 4em;
  margin-bottom: 0.5em;
  font-weight: 400;
}

h2 {
  font-size: 3em;
  margin-bottom: 0.5em;
  font-weight: 400;
  color: #26261d;
}

.btn {
  font-family: "League Spartan", sans-serif;
  background: #ffc999;
  border: none;
  padding: 1em;
  cursor: pointer;
  font-size: 1.2em;
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn:hover {
  background: #ff9333;
}

.container, .header-home .hero .hero-content, .categories, .hero-products, .products, .typewriter h1 {
  max-width: 1200px;
  margin: 0 auto;
}

.spacer, .categories, .hero-products, .products {
  margin: 100px auto;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4em;
  padding: 0.8em;
  font-size: 1.2em;
}

nav .logo {
  width: 120px;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 1.4em;
}

nav a {
  font-size: 1.2em;
  color: #f2f2f0;
  padding: 0.4em;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}

nav a:hover {
  border-bottom: 1px solid #ffc999;
}

nav .active {
  border-bottom: 1px solid #ffc999;
  pointer-events: none;
}

footer {
  padding: 2em;
  border-top: 1px solid #26261d;
  margin: auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}

.fa-brands {
  font-size: 1.5em;
  margin-right: 1em;
}

.header-home {
  background-image: url("/images/hero-bg.jpg");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  -webkit-filter: drop-shadow(16px 16px 32px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(16px 16px 32px rgba(0, 0, 0, 0.2));
}

.header-home .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80vh;
}

.header-home .hero .hero-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  padding: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 2em;
}

@media (max-width: 768px) {
  .header-home .hero .hero-content {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .header-home .hero .hero-content h1 {
    font-size: 3em;
  }
  .header-home .hero .hero-content .hero-lead {
    font-size: 1.2em;
  }
}

.header-home .hero .hero-lead {
  font-size: 1.5em;
  margin-bottom: 1.2em;
  line-height: 1.4em;
}

.header-home .hero .hero__grid-item {
  padding: 2em;
  color: #f2f2f0;
  -webkit-filter: drop-shadow(12px 12px 12px rgba(255, 255, 255, 0.1));
          filter: drop-shadow(12px 12px 12px rgba(255, 255, 255, 0.1));
}

.categories {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  gap: 1em;
}

@media (max-width: 768px) {
  .categories {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}

.categories h2 {
  grid-column: 1/-1;
  font-stretch: 90%;
}

.categories img {
  width: 400px;
  height: 400px;
  -webkit-filter: drop-shadow(16px 16px 12px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(16px 16px 12px rgba(0, 0, 0, 0.2));
}

.categories .categories__grid-item {
  position: relative;
}

.categories .categories__grid-item h3 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2.5em;
  color: #f2f2f0;
  font-weight: 300;
  z-index: 2;
}

.categories .categories__grid-item .btn {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
  width: 100px;
  margin: 0 auto;
  text-align: center;
  background-color: transparent;
  border: 1px solid #ffc999;
  color: #f2f2f0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: 1.4em;
  z-index: 2;
}

.categories .categories__grid-item .btn:hover {
  background-color: #ffc999;
  color: #26261d;
}

@media (max-width: 768px) {
  .categories .categories__grid-item .categories {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .categories .categories__grid-item h3 {
    text-align: center;
    font-size: 2em;
  }
}

@media (max-width: 576px) {
  .categories .categories__grid-item img {
    width: 300px;
    height: 300px;
  }
}

.nav-products {
  background-color: #26261d;
}

.hero-products {
  position: relative;
}

.hero-products figure {
  text-align: center;
  position: relative;
}

.hero-products img {
  height: 70vh;
  -webkit-filter: grayscale(100%) drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.2));
          filter: grayscale(100%) drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.2));
}

.hero-products .hero-content {
  position: absolute;
  width: 70%;
  margin: 0 auto;
  bottom: 5%;
  left: 0;
  right: 0;
  background-color: #ffc999;
  -webkit-filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.2));
  padding: 1em;
}

.hero-products .hero-content p {
  font-size: 1.5em;
}

.products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1.4em;
  padding: 0.8em;
}

.products h2 {
  grid-column: 1/-1;
  text-align: center;
}

.products__item {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  -webkit-filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.2));
}

.products__item-content {
  padding: 1.5em;
  background: #f2f2f0;
  position: relative;
}

.products figure {
  padding: 2em;
  height: 325px;
  overflow: hidden;
}

.products h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  font-weight: lighter;
}

.products p {
  font-size: 1.4em;
  font-weight: bold;
}

.products .favourite-btn {
  position: absolute;
  width: 40px;
  top: 0.5em;
  right: 0.5em;
  padding: 4px;
  cursor: pointer;
}

.products .cart {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 6px;
  width: 40px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .products {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    height: 200px;
  }
}

@media (max-width: 576px) {
  .products {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}

.typewriter h1 {
  font-family: monospace;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid #ffc999;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em;
  /* Adjust as needed */
  -webkit-animation: typing 10s steps(30, start), blink-caret 0.5s step-end infinite;
          animation: typing 10s steps(30, start), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
/*# sourceMappingURL=style.css.map */