@font-face {
  font-family: "Roboto";
  src: url("../font/Cormorant-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Chocolate";
  src: url("../font/Choco_Shake.ttf");
}
@keyframes fromTop {
  from {
    transform: translateY(-5rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fromBottom {
  from {
    transform: translateY(5rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fromBottomDescription {
  from {
    transform: translateY(-80px);
    opacity: 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
  to {
    transform: translateY(-40px);
    opacity: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
@keyframes fromRight {
  from {
    transform: translateX(5rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bgAnim {
  0% {
    left: 0;
    transform: scale(1);
  }
  50% {
    left: -100%;
    transform: scale(2);
  }
  100% {
    left: 0;
    transform: scale(1);
  }
}
* {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.productMenu {
  position: fixed;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  background-color: white;
  width: 100vw;
}
.productMenu .catName {
  font-size: 1.6rem;
}
.productMenu .hamburger {
  height: 25px;
  width: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.productMenu .hamburger .line {
  width: 100%;
  height: 3px;
  background-color: black;
  opacity: 0.6;
}
.productMenu .categories {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 100%;
  opacity: 0.9;
  display: none;
}
.productMenu .categories.active {
  display: flex;
}
.productMenu .categories .prodNav {
  font-size: 1.3rem;
  padding: 1rem 0.5rem;
  display: flex;
  align-items: center;
}
.productMenu .categories .prodNav img {
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
}

nav {
  box-sizing: border-box;
  width: 100vw;
  height: 75vw;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
nav.prod {
  margin-top: 50px;
}
nav #bannerProd {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  opacity: 1;
}
nav #bannerProd.hide {
  transform: translateY(-50%);
  opacity: 0;
}
nav #banner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  opacity: 1;
}
nav #banner.hide {
  transform: translateY(-50%);
  opacity: 0;
}

.title {
  font-size: 2rem;
  text-align: center;
  transition: 0.3s;
  font-family: "Funny", cursive;
  background-color: #ffffff;
  color: rgb(94, 16, 77);
  padding: 1rem 0;
}
.title.stick {
  position: sticky;
  top: 0;
}
.title.stick.white {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.title.change {
  opacity: 0;
}

.bg {
  min-height: 100vh;
  width: 200vw;
  background-image: url("../../admin/img/donuts bg.jpg");
  background-repeat: no-repeat;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  animation: bgAnim 10s infinite;
  filter: blur(5px);
}

.categories {
  display: flex;
  flex-direction: column;
  padding: 10px;
  transition: 0.5s;
  animation: fromTop 0.5s;
}
.categories .category {
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.5);
  width: calc(100vw - 20px);
  cursor: pointer;
  height: 80px;
  border-radius: 40px;
  position: relative;
  margin: 10px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  color: rgba(0, 0, 0, 0.9);
  font-family: "Chocolate", sans-serif;
}
.categories .category.double {
  height: 160px;
}
.categories .category.double img {
  border-radius: 40px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
}
.categories .category.double .name {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 3rem;
  filter: drop-shadow(0 0 2px white);
  width: 100%;
  text-align: center;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.categories .category img {
  height: calc(100% - 10px);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  padding: 5px;
}
.categories .category .name {
  position: absolute;
  font-size: 1.6rem;
  top: calc(50% - 0.8rem);
  left: 20px;
}

.menuPage {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
  margin-bottom: 48px;
  min-height: calc(100vh - 75vw);
}
.menuPage .slideshow {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  opacity: 0.9;
}
.menuPage .slideshow .mainDisp {
  box-sizing: border-box;
  width: 50%;
  height: auto;
  padding: 0.3rem;
  border-radius: 15px;
  transition: 0.3s;
}
.menuPage .slideshow .mainDisp.active {
  width: 100%;
  height: auto;
}
.menuPage .pageItem {
  display: none;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-sizing: border-box;
  margin: 10px 10px 10px 10px;
  position: relative;
  opacity: 0;
  border-radius: 40px;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
.menuPage .pageItem.unavailable {
  opacity: 0.7;
}
.menuPage .pageItem.unavailable img {
  filter: grayscale(1);
}
.menuPage .pageItem.show {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  opacity: 1;
  animation: fromBottom 0.5s;
}
.menuPage .pageItem .popup {
  position: absolute;
  padding: 0.1rem 0.5rem;
  top: 0;
  left: 0;
  transform: translateX(-20%) rotate(-25deg);
  background-color: rgba(255, 123, 123, 0.9);
  border-radius: 16px;
  color: #ffffff;
  opacity: 0.9;
  font-size: 0.8rem;
  z-index: 2;
}
.menuPage .pageItem .popup.promo {
  background-color: rgba(34, 109, 34, 0.9);
  border-radius: 16px;
}
.menuPage .pageItem .popup.ltd, .menuPage .pageItem .popup.unavailable {
  background-color: rgba(255, 59, 59, 0.9);
  border-radius: 16px;
}
.menuPage .pageItem .popup.ltd.down, .menuPage .pageItem .popup.unavailable.down {
  transform: translateX(-20%) translateY(1.1rem) rotate(-25deg);
}
.menuPage .pageItem img {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  animation: fromRight 1s;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
.menuPage .pageItem .itemInfo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 90px;
  margin-right: 10px;
}
.menuPage .pageItem .itemInfo .up {
  display: flex;
  justify-content: space-between;
  margin: 0.3rem 0 0.3rem;
  width: 100%;
}
.menuPage .pageItem .itemInfo .up .name {
  font-size: 1.3rem;
  font-family: "Funny", cursive;
  border-bottom: 1px solid rgba(255, 0, 157, 0.2);
  color: rgb(94, 16, 77);
  text-transform: lowercase;
  opacity: 0.8;
  font-size: bold;
}
.menuPage .pageItem .itemInfo .up .name::first-letter {
  text-transform: uppercase;
}
.menuPage .pageItem .itemInfo .up .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: rgb(0, 141, 47);
  margin: 0 10px;
  text-wrap: nowrap;
}
.menuPage .pageItem .itemInfo .up .price span {
  text-decoration: line-through;
  opacity: 0.5;
  padding-right: 0.5rem;
  color: red;
}
.menuPage .pageItem .itemInfo .ingredients {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.8;
  font-family: "Roboto", sans-serif;
}
.menuPage .pageItem.noDetails .itemInfo {
  margin-left: 25px;
}
.menuPage .pageItem.det {
  height: auto;
}
.menuPage .productDetails {
  display: none;
  transform: translateY(-40px);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  font-size: 0.8rem;
}
.menuPage .productDetails.show {
  display: flex;
  flex-direction: column;
  animation: fromBottomDescription 0.5s;
  margin-left: 10px;
  margin-right: 10px;
  box-sizing: border-box;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.menuPage .noItems {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Funny", cursive;
  color: #ffffff;
  text-align: center;
  background-color: rgb(94, 16, 77);
  padding: 1rem;
}
.menuPage.hide {
  transition: 0.5s;
  display: none;
}

button {
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  border: 0;
  color: rgb(94, 16, 77);
  opacity: 0.9;
  border-radius: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 80px;
  width: 80px;
  z-index: 1;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

footer {
  background-color: #ffffff;
  color: rgb(94, 16, 77);
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
footer .up {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}
footer .middle {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
footer .middle a {
  margin: 0 1rem;
}
footer .middle a img {
  height: 1.9rem;
  width: auto;
}
footer .down {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 123, 123, 0.9);
  display: flex;
  justify-content: space-around;
}
footer .down a {
  width: 45%;
}
footer .down a img {
  width: 100%;
  height: auto;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
}
.contact svg {
  opacity: 0.8;
}
.contact a {
  text-decoration: none;
}

@media (min-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bg {
    animation: bgAnim 120s infinite;
  }
  nav {
    width: 30vw;
    height: 50vh;
    box-sizing: border-box;
    min-width: 450px;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
  }
  nav #banner {
    height: auto;
    width: 100%;
  }
  nav #bannerProd {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .title {
    width: 50vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  .categories {
    width: 30vw;
    min-width: 450px;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  }
  .categories .category {
    width: 100%;
  }
  footer {
    width: 30vw;
    min-width: 450px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
  }
  footer .down a {
    width: 30%;
  }
  .menuPage {
    width: 30vw;
    min-width: 450px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .menuPage .pageItem {
    padding: 0.5rem;
    flex: 1 1 calc(50% - 1rem);
    margin: 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  .menuPage .pageItem img {
    width: 150px;
    height: 150px;
  }
  .menuPage .pageItem .productDetails {
    left: calc(156px + 0.5rem);
    width: calc(100% - 150px - 6px - 0.5rem);
  }
  .productMenu {
    width: 30vw;
    min-width: 450px;
  }
  .productMenu .categories {
    box-sizing: border-box;
  }
}/*# sourceMappingURL=index.css.map */