* {
  box-sizing: border-box;
}

html, body {
  font-family: "Advent Pro", sans-serif;
  font-weight: bold;
  font-size: 16pt;
  color: #fff;
  min-height: 100vh;
  background-color: #121212;
}

@media (max-width: 800px) {
  html, body {
    font-size: 10pt;
  }
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.logo {
  max-width: 80vw;
  width: 384px;
}

#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 5vh);
  background-image: url("../images/background_pattern.svg");
  background-repeat: repeat;
  background-size: 1024px;
  background-color: #ED3636;
  fill: #C33A3A;
}

.main-public-display {
  height: 100vh;
  justify-content: center;
}

.main-public-display > #menu > .menu-column {
  padding: 64px 0;
}

#splash {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 80vw;
  text-align: center;
}

#splash-cta {
  position: relative;
  display: flex;
  margin-top: 32px;
}

#splash > div > p {
  margin-bottom: 8px;
}

#header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #121212;
  height: 5vh;
  align-items: center;
}

#header > div > img {
  height: 1rem;
}

.store-status {
  background-color: #fff;
  padding: 8px 32px;
  border-radius: 512px;
  color: #000;
  text-transform: uppercase;
  margin: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-status > img {
  margin-right: 0.5rem;
}

.store-status > a > i {
  margin-left: 0.5rem;
  color: #000;
}

#footer {
  display: flex;
  min-height: 128px;
  padding: 64px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #121212;
}

#footer-nav-logo {
  width: 128px;
  margin: 16px;
}

#footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

#footer-nav > a {
  margin: 16px;
  display: inline-block;
}

#footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  margin-bottom: 16px;
  opacity: 35%;
}

#footer-logo > img {
  margin: 8px;
}

#footer-logo > img:first-child {
  width: 64px;
  max-width: 20vw;
}

#footer-logo > img:last-child {
  width: 256px;
  max-width: 60vw;
}

#footer-address {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 35%;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 110%;
}

#footer-address > div:first-child {
  font-weight: 700;
  margin-bottom: 8px;
}

#footer-address > div {
  text-align: center;
}

.button {
  background-color: #ffd900;
  border: 4px solid #f1a80a;
  border-radius: 512px;
  color: #000;
  padding: 16px 64px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 5px 0 1px #00000040;
}

.button:hover {
  color: #000;
}

.button-badge {
  position: absolute;
  transform: rotate(15deg);
  top: -20px;
  right: -10px;
  background-image: url("../images/badge.svg");
  background-size: cover;
  filter: drop-shadow(0 5px 0 rgba(0, 0, 0, .25));
  width: 64px;
  height: 64px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.vipps {
  transform: translateY(12px);
}

a {
  color: #fff;
}

img {
  user-select: none;
  pointer-events: none;
}

#menu {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-order {
  display: flex;
  flex-direction: column;
  margin: 64px 64px 0 0;
}

.menu-order > div > img {
  width: 15vw;
}

.menu-qr {
  margin-top: 128px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  color: #000;
  padding: 48px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.menu-qr > img {
  object-fit: contain;
  max-height: 100%;
  max-width: 256px;
  margin: 16px 0;
}

.menu-list {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr max-content;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: 1.2rem;
  font-weight: 400;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 64px;
}

.menu-list-bottom {
  grid-column: 1 / span 2;
  text-align: center;
  padding-top: 1.5rem;
  font-size: 1rem;
}

@media (max-width: 2200px) {
  .menu-order {
    display: none;
  }
}

.menu-category {
  width: 800px;
  max-width: 95vw;
  margin: 32px 32px 64px;
}

.menu-category-info {
  display: flex;
  justify-content: center;
}

.menu-separator {
  display: flex;
  font-size: 3.5rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.menu-separator > span {
  display: block;
}

.menu-separator > hr {
  border: 3px solid #fff;
  flex: 1;
  margin-left: 32px;
}

.menu-item {
  display: flex;
  background-color: #fff;
  color: #000;
  border-radius: 48px;
  box-shadow: 0 5px 0 1px #00000040;
  margin-bottom: 16px;
  max-width: 95vw;
}

.menu-item-description {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.menu-item-image {
  border-radius: 0 48px 48px 0;
  max-height: 100%;
  max-width: 280px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .menu-category {
    width: auto;
  }

  .menu-item {
    flex-direction: column;
    border-radius: 32px;
  }

  .menu-item-description {
    padding: 24px 32px;
  }

  .menu-item-image {
    border-radius: 0 0 32px 32px;
    max-width: 100%;
    max-height: 128px;
    width: 100%;
    object-fit: cover;
  }
}

.menu-item-name {
  opacity: 50%;
  margin-bottom: 8px;
}

.menu-item-title {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.menu-item-price {
  color: #ED3636;
  display: inline-block;
}

.menu-item-details {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 16px;
  opacity: 80%;
  line-height: 125%;
}

.menu-item-allergens {
  opacity: 50%;
}

.menu-items-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-item-small {
  width: calc(50% - 8px);
  font-size: 0.8rem;
}

.menu-item-small > .menu-item-description {
  padding: 32px;
}

.menu-item-small > .menu-item-description > .menu-item-title {
  font-size: 1.2rem;
}

.menu-item-small > .menu-item-image{
  max-width: 128px;
}

h1 {
  font-family: "Advent Pro", sans-serif;
  font-size: 3rem;
  margin-top: 64px;
  margin-bottom: 16px;
}

.about-section, .contact-section {
  max-width: 800px;
  width: 80vw;
}

.about-category, .contact-category {
  margin: 64px 32px;
}

.opening-hours {
  display: grid;
  grid-template-columns: min-content 1fr;
  text-align: left;
  column-gap: 32px;
  margin-bottom: 16px;
}

.panel {
  background-color: #fff;
  border-radius: 48px;
  box-shadow: 0 5px 0 1px #00000040;
  margin-bottom: 16px;
  padding: 48px;
  color: rgba(0, 0, 0, 0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}

@media (max-width: 800px) {
  .about-section, .contact-section {
    width: 95vw;
  }

  .about-category, .contact-category {
    margin: 32px 16px;
  }

  .panel {
    border-radius: 32px;
    padding: 32px;
  }
}

.panel > img {
  object-fit: contain;
  max-width: 80%;
  margin: 16px 0;
  border-radius: 8px;
}

em {
  font-weight: 700;
}

p {
  display: block;
  margin: 16px;
  text-align: left;
}

label {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 32px;
  display: flex;
  align-items: center;
}

input, textarea {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  flex: 1;
}

.panel > input {
  width: 100%;
  max-width: fit-content;
}

.panel > textarea {
  width: 100%;
}

input[type=submit] {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 700;
  background-color: #ffd900;
  border: 4px solid #f1a80a;
  border-radius: 512px;
  color: #000;
  padding: 16px 64px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 5px 0 1px #00000040;
}

#contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#contact-form > input {
  margin-top: 16px;
}

#contact-form > .panel {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px;
  width: 100%;
}

@media (max-width: 800px) {
  #contact-form > .panel {
    grid-template-columns: 1fr;
  }
}

.map {
  width: 700px;
  height: 500px;
  border: 2px solid #ccc;
}

@media (max-width: 800px) {
  .map {
    height: 300px;
  }
}

#takeaway-menu {
  width: 100vw;
  height: 56.25vw;
}