/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kalam&family=Raleway&display=swap");
/*------------------------------------*\
    MIXINS / EXTENDS / VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    MAIN / GLOBAL
\*------------------------------------*/
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font: 300 1.6rem/1.4 "Raleway", sans-serif;
  color: #333333;
}

a {
  color: #fe646f;
  text-decoration: none;
}
a:hover {
  color: #ffe068;
}

h1 {
  font-size: 2.4em;
}

h2 {
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h1 {
  font-family: "Kalam", cursive;
  color: #fe646f;
  margin-bottom: 0;
  font-weight: 300;
}
.section-title p {
  margin: 0;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}
.section-title p:after {
  content: "";
  height: 15px;
  width: 150px;
  position: absolute;
  bottom: -40%;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/separator.png) top left no-repeat;
  background-size: cover;
}

.modify {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.modify .gear {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  transition: all 0.2s ease-out;
}
.modify .gear:hover {
  background: #fe646f;
}
.modify .menu {
  list-style: none;
  padding: 15px;
  margin: 0;
  position: relative;
  right: -100%;
  transition: all 0.2s ease-out;
}
.modify .menu li {
  display: block;
}
.modify .menu li a {
  display: block;
  padding: 0;
  margin: 5px;
  border-radius: 10px;
  height: 32px;
}
.modify .menu li a:hover {
  background: #fe646f;
}
.modify.active .gear {
  transform: rotate(30deg);
  background: #ffe068;
}
.modify.active .menu {
  right: 0;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
header .logo {
  text-align: center;
}
@media (min-width: 992px) {
  header .logo {
    text-align: left;
  }
}
header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  z-index: 9999;
}
@media (min-width: 992px) {
  header nav {
    justify-content: flex-end;
    padding-bottom: 0;
  }
}
header nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
header nav .menu li {
  display: inline-block;
  position: relative;
}
header nav .menu li a {
  display: block;
  color: #333333;
  text-decoration: none;
  transition: color 0.1s ease-in;
  padding: 5px 15px;
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
}
header nav .menu li ul {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  padding: 15px;
  border: 1px solid #666;
}
header nav .menu li:hover > a {
  color: #fe646f;
}
header nav .menu li:hover > ul {
  display: block;
}

main {
  height: 100%;
  min-height: calc(100vh - 200px);
  position: relative;
  margin-bottom: 60px;
}
main section, main article {
  margin-top: 60px;
}

footer {
  background: radial-gradient(circle, #f33c49 0%, #70262c 80%);
  color: white;
  text-align: center;
}
footer .text {
  padding: 15px;
}
footer .text a {
  color: #ffe068;
  text-decoration: none;
}
footer .text a:hover {
  color: #333333;
}
footer .bottom-bar {
  background: #222;
  padding: 10px 0;
  width: 100%;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
.homepage .banner {
  margin-top: 0;
  position: relative;
  min-height: 100px;
  width: 100%;
}
.homepage .banner .background {
  position: absolute;
  z-index: 1;
  height: 90%;
  width: 100%;
  top: 0;
  background: #fe646f;
  overflow: hidden;
}
.homepage .banner .background:after {
  content: "";
  height: 200%;
  width: 100%;
  position: absolute;
  background: radial-gradient(circle, #ffe068 0%, #fe646f 70%);
  left: 20%;
  top: -5%;
}
.homepage .banner .container {
  position: relative;
  z-index: 2;
  padding-top: 15px;
}
.homepage .banner .container .img {
  position: relative;
}
.homepage .banner .container .img .cupcake {
  position: relative;
  z-index: 11;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  max-width: 60%;
  bottom: 100%;
  opacity: 0;
}
.homepage .banner .container .img .shadow {
  position: absolute;
  z-index: 10;
  bottom: -29%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  max-width: 60%;
  opacity: 0;
}
.homepage .banner .container .text {
  font-size: 1.6rem;
  color: white;
  padding-left: 30px;
  display: flex;
  padding-bottom: 5%;
  flex-direction: column;
  justify-content: center;
}
.homepage .banner .container .text * {
  position: relative;
  left: -200%;
}
@media (min-width: 768px) {
  .homepage .banner .container .text {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .homepage .banner .container .text {
    font-size: 2.8rem;
  }
}
.homepage .banner .container .text .title {
  margin: 0 0 15px 0;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.7em;
}
.homepage .info {
  min-height: 600px;
  height: 600px;
  width: 100%;
  background: url(../img/info-bg2.jpg) top center no-repeat;
  position: relative;
  background-size: cover;
  padding: 30px 0;
}
.homepage .info:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(20, 20, 20, 0.4);
  left: 0;
  top: 0;
  mix-blend-mode: luminosity;
  z-index: 10;
}
.homepage .info .container {
  z-index: 20;
  position: relative;
  height: 100%;
}
.homepage .info .container > .row {
  height: 100%;
  align-content: center;
}
.homepage .info .section-title {
  text-shadow: 1px 1px 3px #333;
  margin-bottom: 0px;
}
@media (min-width: 576px) {
  .homepage .info .section-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .homepage .info .section-title {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .homepage .info .section-title {
    margin-bottom: 90px;
  }
}
.homepage .info .section-title h1 {
  font-weight: bold;
}
.homepage .info .section-title p {
  color: white;
}
.homepage .info .text {
  padding: 30px;
}
.homepage .info .text p {
  color: white;
  font-size: 1.8rem;
}
.homepage .info .text p span {
  display: block;
  float: left;
  font-size: 4.5rem;
  font-weight: bold;
  margin: -5px 5px -10px 0;
}

@media (min-width: 768px) {
  .categories .row {
    --bs-gutter-x:3rem;
    --bs-gutter-y:1.5rem;
  }
}
.categories .item .img {
  z-index: 20;
}
@media (min-width: 992px) {
  .categories .item .img {
    padding-left: 0;
  }
}
.categories .item .img .mask {
  overflow: hidden;
}
.categories .item .img .mask div {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #999;
  width: 100%;
  min-height: 300px;
  transition: transform 0.3s ease-out;
}
@media (min-width: 992px) {
  .categories .item .img .mask div {
    min-height: 400px;
  }
}
.categories .item .description {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-top: 1px;
  text-align: center;
  transition: color 0.3s ease-out;
}
@media (min-width: 992px) {
  .categories .item .description {
    margin-top: var(--bs-gutter-y);
    padding-left: var(--bs-gutter-x);
  }
}
.categories .item .description:before {
  content: "";
  position: absolute;
  border: #666 1px solid;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  z-index: -1;
}
@media (min-width: 992px) {
  .categories .item .description:before {
    left: 1.5rem;
    height: 90%;
  }
}
.categories .item .description:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: #fe646f;
  transition: width 0.2s ease-out;
  z-index: -1;
}
@media (min-width: 992px) {
  .categories .item .description:after {
    right: -1.5rem;
    height: 90%;
  }
}
.categories .item .description h2 {
  font-family: "Kalam", cursive;
  font-weight: 300;
  font-size: 1.8em;
  position: relative;
}
.categories .item .description h2:after {
  content: "";
  height: 2px;
  width: 50%;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fe646f;
  transition: background 0.5s ease-out;
}
.categories .item .description .button {
  display: block;
  border: 1px solid #666;
  padding: 15px 30px;
  margin: 15px;
  font-weight: bold;
  transition: all 0.1s ease-out;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.categories .item .description .button:after {
  content: "";
  height: 100%;
  width: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fe3140;
  transition: all 0.2s ease-out;
  z-index: -1;
  opacity: 1;
}
.categories .item .description .button:hover {
  border-color: #333 !important;
  background: repeating-linear-gradient(-45deg, #fe646f, #fe646f 10px, #fe3140 10px, #fe3140 20px, #fe646f 20px) 0 0;
  animation: animateBG 1s linear 0s infinite;
}
.categories .item .description .button:hover:after {
  opacity: 0;
}
@keyframes animateBG {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 28.3px 0;
  }
}
.categories .item:hover .img .mask div {
  transform: scale(1.1);
}
.categories .item:hover .description {
  color: white;
}
.categories .item:hover .description h2:after {
  background-color: #333;
}
.categories .item:hover .description:after {
  width: 100%;
}
.categories .item:hover .description .button {
  border-color: white;
  color: white;
}
.categories .item:hover .description .button:after {
  width: 100%;
}

.recipes .item {
  position: relative;
  margin-bottom: 35px;
  display: block;
  cursor: pointer;
}
.recipes .item .img {
  width: 100%;
  min-height: 200px;
  background-position: center center;
  background-size: cover;
}
.recipes .item .img:after {
  content: "";
  height: 0%;
  width: 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid white;
  transition: all 0.4s ease-out;
  opacity: 0;
}
.recipes .item .text {
  background: white;
  border: 1px solid #666;
  text-align: center;
  width: 70%;
  padding: 15px;
  font-family: "Kalam", cursive;
  font-size: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: auto;
  transition: color 0.3s ease-out;
  color: #333333;
}
.recipes .item .text span {
  position: relative;
  z-index: 20;
}
.recipes .item .text:after {
  content: "";
  height: 100%;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fe646f;
  transition: width 0.2s ease-out;
  z-index: 10;
}
.recipes .item:hover .img:after {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  opacity: 1;
}
.recipes .item:hover .text {
  color: white;
}
.recipes .item:hover .text:after {
  width: 100%;
}

.single .img {
  overflow: hidden;
  height: 450px;
  position: relative;
  background: #CCC;
  margin-bottom: 15px;
}
.single .img img {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.single .short-info {
  padding: 0px 35px;
}
.single .short-info h1 {
  text-align: center;
  font-size: 4rem;
  margin-top: 0;
  font-family: Kalam, cursive;
  position: relative;
}
.single .short-info h1:after {
  content: "";
  height: 15px;
  width: 150px;
  position: absolute;
  bottom: -10%;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/separator.png) top left no-repeat;
  background-size: cover;
}
.single .short-info .ing-icon {
  position: relative;
  padding-left: 40px;
}
.single .short-info .ing-icon:after {
  content: "";
  height: 32px;
  width: 32px;
  position: absolute;
  bottom: 5px;
  left: 0;
  background: url(../img/ing.jpg) top left no-repeat;
  background-size: cover;
}
.single .short-info .clk-icon {
  position: relative;
  padding-left: 40px;
}
.single .short-info .clk-icon:after {
  content: "";
  height: 32px;
  width: 32px;
  position: absolute;
  bottom: 5px;
  left: 0;
  background: url(../img/clk.jpg) top left no-repeat;
  background-size: cover;
}