@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Carrois+Gothic&family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Carrois+Gothic&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Carrois+Gothic&family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

* {
  margin: 0;
}

body {
  width: 100%;
}

header {
  width: 100%;
  height: 70vh;
}

.container {
  height: 100%;
  width: 100vw;
  background-image: url("./../images/bg-light.svg");
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
}

nav {
  background-color: white;
  height: 10%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  justify-content: space-between;
  top: 0;
  z-index: 10;
}

img.logo {
  flex: 15%;
  margin-top: 4%;
  margin-bottom: 4%;
  width: auto;
  height: 8vh;
  justify-content: flex-start;
}

ul {
  flex: 85%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

#icon {
  width: 25px;
  height: 25px;
  cursor: pointer;
  padding: 4% 3%;
}

ul li {
  padding: 4% 3%;
  font-family: Merriweather;
  font-size: 20px;
}
ul li a {
  text-decoration: none;
  color: black;
}

h1 {
  padding-top: 20vh;
  font-family: Berkshire Swash;
  font-size: 5vh;
  font-weight: 700;
  text-align: center;
}

header p {
  text-align: center;
  font-family: Merriweather;
  font-size: 2vh;
  padding: 20px;
}
header i {
  text-align: center;
}

#count {
  font-size: 14px;
  color: white;
  background-color: #DFEC53;
  padding: 7px 10px;
  border-radius: 50%;
}

.fa-cart-shopping:hover {
  transform: scale(110%);
}

.navigation {
  color: black;
  background-color: transparent;
}

div.menu-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  min-height: 600px;
  width: 100%;
}

div.menu-item {
  width: 360px;
  height: 500px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 4px 70px rgba(0, 0, 0, 0.1);
  border: 1px solid white;
}
div.menu-item:hover {
  transform: scale(1.1);
  transform: border;
  border: 1px solid black;
  transition: transform 0.3s ease;
  transition: border-color 0.9 ease;
}
div.menu-item h3 {
  font-family: Berkshire Swash;
  font-size: 20px;
  margin-left: 30px;
}
div.menu-item p.description {
  font-family: Barlow;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 3em;
  margin-left: 30px;
  margin-right: 15px;
  font-size: 18px;
  letter-spacing: 1px;
}
div.menu-item img {
  width: 300px;
  height: 241px;
  display: flex;
  justify-content: center;
  margin-left: 30px;
  margin-top: 30px;
}
div.menu-item button.cart {
  margin-right: 35px;
  min-width: 60px;
  display: flex;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  background-color: #DFEC53;
  color: white;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
div.menu-item button.cart:hover {
  background-color: #d6e725;
}
div.menu-item button.cart:focus {
  outline: none;
}
div.menu-item button.cart:active {
  transform: translateY(1px);
}

div.details-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  min-height: 3em;
}
div.details-container p.price {
  font-family: Berkshire Swash;
  margin-right: 10px;
  margin-left: 30px;
}
div.details-container p.origin {
  font-family: Berkshire Swash;
  display: none;
}

div.menu-item.filtered-itemé h3 {
  font-family: Berkshire Swash;
  font-size: 20px;
  margin-left: 30px;
  margin-top: 30px;
}
div.menu-item.filtered-itemé p.description {
  font-family: Barlow;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 3em;
  margin-left: 30px;
  margin-right: 15px;
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 10px;
}
div.menu-item.filtered-itemé div.details-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.filter-btn {
  transition: transform 0.3s ease;
}

.rotate-right {
  transform: rotate(45deg);
}

.rotate-left {
  transform: rotate(-45deg);
}

#animated-text {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main section h1 {
  font-family: "Berkshire Swash", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 6vh;
}
main section ul {
  width: 100%;
  padding: 5vh;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
main section ul li {
  padding: 2%;
  font-size: 30px;
}
main section ul li i {
  border-radius: 1px solid red;
}

.about {
  margin: 5vh 5vh;
  height: 100%;
}

.about h2 {
  text-align: center;
  padding: 5vh 0 0;
  font-family: "Berkshire Swash", serif;
  font-weight: 400;
  font-size: 2em;
}

.about-text p {
  text-align: justify;
  margin-left: 8vw;
  margin-top: 5vh;
  display: flex;
  flex-direction: column;
  width: 55vw;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1em;
}

.rectangle {
  width: 80vw;
  height: 2vh;
  border-radius: 30px;
  background-color: #F1EEB8;
  margin: 0 auto;
  position: relative;
  transform: translate(0, -90%);
  z-index: -1;
}

.berkshire-swash-regular {
  font-family: "Berkshire Swash", serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

footer {
  background-image: url("./../images/footer-light.svg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
  margin: 0;
  position: relative;
}

/*footer.dark-theme>.git-icons {
    filter: brightness(0) invert(1);
}*/
.contacts {
  display: flex;
  flex-direction: row;
  align-content: bottom;
  justify-content: flex-end;
  top: 70vh;
  height: 100%;
}
.contacts > * {
  flex: 1;
  align-content: flex-end;
  padding: 1vh 3vw;
}

.git-icons {
  flex: 1;
  text-align: center;
}
.git-icons > svg {
  padding: 0 5px;
}

.contacts h2 {
  font-family: "Berkshire Swash", serif;
  font-weight: 400;
  font-size: 2em;
  padding: 5px 0 3vh 0;
}

.contacts p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1em;
  padding: 5px 0;
}

.about-picture {
  position: absolute;
  top: -25vh;
  right: 5%;
  z-index: -5;
}
.about-picture img {
  width: 80%;
  height: auto;
}

.mail {
  text-align: right;
}

@media (max-width: 1300px) {
  .about-picture {
    top: -10vh;
  }
}
@media (max-width: 1050px) {
  .about-picture {
    top: -5vh;
    right: 10vh;
    height: 70%;
    width: auto;
  }
  .about-picture > img {
    height: 100%;
    width: 100%;
  }
}
.cart_modal {
  position: fixed;
  font-family: "Carrois Gothic", sans-serif;
  font-size: 16px;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.shopping_cart {
  border-radius: 10px;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  padding: 3%;
  min-width: 50%;
  max-width: 50%;
  min-height: 50vh;
  max-height: 50vh;
  align-content: center;
  border-style: ridge;
  background-color: white;
  position: absolute;
  overflow: auto;
  top: 15vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}
.shopping_cart > img {
  position: absolute;
  top: 3%;
  right: 1%;
  width: 7%;
  height: 7%;
}
.shopping_cart > img:hover {
  transform: scale(120%);
}
.shopping_cart > div {
  display: flex;
  justify-content: center;
  padding: 1%;
}
.shopping_cart > div > span {
  flex: 1;
  text-align: center;
}
.shopping_cart > div > span:first-of-type {
  text-align: left;
  flex: 2;
  padding-left: 1%;
}
.shopping_cart > div > span:last-of-type {
  padding-right: 2%;
  text-align: right;
}

.empty {
  line-height: 5vh;
}

.title {
  margin-top: 5%;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid lightgrey;
}

.dish_name {
  text-align: left;
  padding-left: 1%;
  flex: 25%;
}

.dish_quantity {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.dish_quantity > img {
  padding: 0 2%;
  width: 25px;
  height: 25px;
}

.total {
  display: flex;
  border-top: 3px solid black;
  font-weight: bold;
  font-size: 18px;
}
.total span {
  width: 50%;
}
.total span > img {
  width: 40px;
  height: 40px;
}

.checkout {
  text-align: right;
  font-size: 18px;
  background-color: rgb(130, 212, 130);
  color: white;
  font-weight: bold;
  padding: 15px 13px;
  border: none;
  border-radius: 25px;
}
.checkout:hover {
  transform: scale(110%);
}

@media (max-width: 700px) {
  .shopping_cart {
    min-width: 70%;
    max-width: 70%;
  }
}
.dark-theme {
  background-color: black;
  color: white;
}

.navigation.dark-theme {
  color: white;
  background-color: transparent;
}

.shopping_cart.dark-theme {
  color: white;
  background-color: rgb(57, 57, 57);
}
.shopping_cart.dark-theme #closeModal {
  filter: invert(1);
}
.shopping_cart.dark-theme .total {
  border-top: 3px solid white;
}

div.menu-item.dark-card {
  background-color: #333;
  color: white;
  box-shadow: 1px 1px 60px rgb(128, 128, 128);
  border: 1px solid black;
}

.rectangle.dark-theme {
  background-color: #3A3C03;
}

.git-icons.dark-theme {
  background-color: transparent;
}
.git-icons.dark-theme > svg {
  filter: invert(1);
}/*# sourceMappingURL=style.css.map */