@import url("https://fonts.googleapis.com/css2?family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*,
*::before,
*::after {
  outline: none;
  box-sizing: border-box;
}

body {
  background-color: #000;
  margin: 0;
}

strong {
  font-weight: 600;
}

.page {
  width: 100vw;
  height: 100vh;
  font-family: "Gentium Plus", "serif";
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

header {
  display: flex;
  position: fixed;
  z-index: 3;
  width: 100vw;
  height: 50px;
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.subheader {
  width: 100vw;
  margin-top: 50px;
  height: 50px;
  position: fixed;
  background-color: black;
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  text-align: center;
  color: #e4ba56;
}

.subheader a {
  font-size: 0.8rem;
  line-height: 40px;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

main h2 span {
  color: #fff;
}

main p {
  line-height: 1.5;
  font-weight: 200;
  margin: 20px 0;
}

main small {
  font-weight: 300;
  color: #e4ba56;
}

#nav-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  z-index: 3;
}
#nav-container .bg {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100vw;
  height: calc(100% - 50px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  background: #000;
}
#nav-container:focus-within .bg {
  visibility: visible;
  opacity: 0.6;
}
#nav-container * {
  visibility: visible;
}

.button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 50px;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 25px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #e4ba56;
  transition: 0.3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}

#nav-container:focus-within .button {
  pointer-events: none;
}
#nav-container:focus-within .icon-bar:nth-of-type(1) {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container:focus-within .icon-bar:nth-of-type(3) {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

#nav-content {
  margin-top: 50px;
  padding: 30px 0 90px 0;
  width: 90%;
  max-width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100vh - 50px);
  background: #e4ba56;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateX(-100%);
  transition: transform 0.3s;
  will-change: transform;
  contain: paint;
  color: #000;
  font-weight: 700;
}

#nav-content ul {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#nav-content li a {
  padding: 10px 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.1s;
}

#nav-content li {
  text-align: center;
}

#nav-content li a:hover {
  color: #fff;
}

#nav-content li:not(.small) + .small {
  margin-top: auto;
}

.small {
  display: flex;
  align-self: center;
}

.small a {
  font-size: 1rem;
  font-weight: 700;
  color: black;
}
.small a + a {
  margin-left: 15px;
}

#nav-container:focus-within #nav-content {
  transform: none;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: black;
  color: white;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  display: flex;
}

.footer p {
  margin: auto;
  font-size: 0.7em;
  font-weight: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 120%;
}

html {
  scroll-behavior: smooth;
}

a,
a:visited,
a:focus,
a:active,
a:link {
  text-decoration: none;
  outline: 0;
}

a {
  color: currentColor;
  transition: 0.2s ease-in-out;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  vertical-align: middle;
  height: auto;
  width: 100%;
}

.welcome {
  width: 100%;
  height: 110%;
  background-image: url("/assets/images/welcome.png");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.welcome h1 {
  font-weight: 400;
  font-style: italic;
  font-size: 2.5rem;
}

.gastronomy {
  width: 100%;
  height: 110%;
  background-image: url("/assets/images/gastronomy.png");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.gastronomy h1 {
  font-size: 0.8em;
  letter-spacing: 0.2em;
}

.gastronomy p {
  margin: 30px auto 0 auto;
  font-style: italic;
  font-size: 1.2em;
  font-weight: 400;
  max-width: 600px;
}

#fade {
  -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 3s; /* Firefox < 16 */
  -ms-animation: fadein 3s; /* Internet Explorer */
  -o-animation: fadein 3s; /* Opera < 12.1 */
  animation: fadein 3s;
}

.carousel {
  width: 100vw;
  height: 70vh;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 300ms opacity ease-in-out;
  transition-delay: 200ms;
}

.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 500px;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(228, 186, 86, 0.8);
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
  background-color: rgba(0, 0, 0, 0.1);
  font-family: "Zapf Dingbats";
}

.menu-button {
  position: absolute;
  z-index: 2;
  background: none;
  color: #e4ba56;
  border: 2px solid #e4ba56;
  padding: 12px;
  font-size: 0.7rem;
  cursor: pointer;
  border-radius: 6px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10%;
  letter-spacing: 0.1em;
}

.menuItemTitle {
  font-weight: 400;
  font-size: 1.2rem;
  position: absolute;
  margin-top: 18%;
  width: 100vw;
  text-align: center;
  letter-spacing: 0.1em;
}

.carousel-button:hover {
  color: #e4ba56;
  background-color: rgba(0, 0, 0, 0.2);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.swipe {
  overflow: hidden;
  visibility: hidden;
  position: relative;
}
.swipe-wrap {
  overflow: hidden;
  position: relative;
}
.swipe-wrap > div {
  float: left;
  width: 100%;
  position: relative;
}

.title__menu {
  color: #e4ba56;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 90px;
  letter-spacing: 0.2em;
}

.main__menu {
  text-align: center;
  margin-bottom: 70px;
}

.dish__name {
  margin: 20px 0 0 0;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.dish__details {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
}

.dish__price {
  color: #e4ba56;
  font-style: italic;
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

.chef {
  color: #e4ba56;
  font-weight: 700;
}

.menu__wrapper {
  padding: 0 30px 70px 30px;
  margin-top: 20px;
}
.socials {
  position: fixed;
  bottom: 40px;
  right: 0px;
  height: 35px;
  z-index: 4;
  margin-right: 10px;
}
.booknow {
  position: fixed;
  top: 5px;
  right: 0px;
  z-index: 4;
  margin-right: 4px;
}
.book-button {
  background: none;
  color: #e4ba56;
  border: 2px solid #e4ba56;
  padding: 10px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: 0.1em;
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}

.video_transparency {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
}
.video_gradient {
  position: fixed;
  background: radial-gradient(transparent 50%, black);
  height: 100vh;
  width: 100vw;
  z-index: -1;
}

.menu__list__items {
  font-size: 0.8rem;
  margin: 0px;
}

@media (min-width: 1040px) {
  .subheader {
    padding: 5px 20%;
  }
}
