/* Base styles */
body {
  margin: 0;
  font-family: Riposte, ui-sans-serif, system-ui, sans-serif;
  background-color: #fefff2;
  color: #cf9a40;
}

/* Menu drawer styles */
[data-menu-drawer] {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  height: -webkit-fill-available;
  height: 100dvh;
  width: 100%;
  max-width: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 50;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  [data-menu-drawer] {
    max-width: 75vw;
  }
}

@media (min-width: 1280px) {
  [data-menu-drawer] {
    max-width: 60vw;
  }
}

.menu-drawer--open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.menu-drawer--open [data-menu-drawer] {
  transform: translateX(0);
  display: block;
}

/* Animations */
@keyframes bounce-x {

  0%,
  100% {
    transform: translateX(15%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: translateX(-15%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
}

/* Layout */
.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 2000px;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

/* Colors */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #5f1d1a;
  --color-terracotta: #cf9a40;
  --color-cream: #fefff2;
}

/* Menu Typography */
[data-menu-block] h2,
[data-menu-block] span,
h2 {
  font-family: 'TAN Tangkiwood', sans-serif;
}