/*********** RESET ************/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*********** COLOUR VARS ************/
:root {
  --width-desktop: 960px;
  --width-tablet: 714px;
  --width-mobile: 348px;
  --color-primary: #EA120B;
  --color-secondary: #2E0A0A;
  --color-background: #FFFFFC;
  font-size: 14px;
}

/*********** LAYOUT ************/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background-color: var(--color-background);
  color: var(--color-primary);
}

.container {
  max-width: var(--width-desktop);
  margin: 0 auto;
}

footer > .container {
  border-top: 1px solid var(--color-primary);
}

section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

main {
  flex-grow: 1;
  overflow: hidden;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/*********** FONT STYLING ************/
h1 {
  font-size: 4rem;
  line-height: 90%;
  text-transform: uppercase;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  line-height: 140%;
}

a {
  color: var(--color-primary);
}

/*********** LINK BUTTONS ************/
a.button, button {
  min-height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color-background);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  padding: 0 1em;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
a.button i, button i {
  margin-left: 0.4em;
}

a.button:hover, button:hover {
  color: var(--color-secondary);
  background-color: var(--color-background);
}

a.button.secondary {
  color: var(--color-secondary);
  background-color: var(--color-background);
}

a.button.secondary:hover {
  color: var(--color-background);
  background-color: var(--color-secondary);
}

/*********** NAV ************/
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 0 2rem 0;
}

nav > a {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 120%;
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: none;
}

nav > a:hover {
  color: var(--color-secondary);
}

nav > a::after {
  content: "";
  display: block;
  height: 0.18em;
  width: 100%;
  background-color: var(--color-primary);
}

nav > a:hover::after {
  background-color: var(--color-secondary);
}

nav > a.active {
  color: var(--color-secondary);
}

nav > a.active::after {
  background-color: var(--color-secondary);
}

/*********** FOOTER ************/
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 1rem 0 5rem 0;
}
.footer-content a {
  text-decoration: none;
}
.footer-content :last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: var(--color-secondary);
}

/*********** HERO ************/
.hero-img {
  max-height: 420px;
  border: 1px solid var(--color-primary);
  filter: contrast(1.1);
  z-index: -1;
  position: relative;
}

figcaption {
  text-align: end;
  font-size: 0.9rem;
}

h1.hero {
  font-size: 14rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 76%;
  letter-spacing: -0.06em;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: -0.04em;
  margin-bottom: 0.05em;
  text-shadow: 0.05em 0.05em 0 var(--color-background);
  position: relative;
  z-index: 2;
}
h1.hero .hero-kern {
  letter-spacing: -0.04em;
}

section.hero {
  position: relative;
}

.badge {
  -webkit-clip-path: url(#badge-clip);
          clip-path: url(#badge-clip);
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  aspect-ratio: 1/1;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transform: rotate(9deg) translate(16px, 5px);
  z-index: 1;
}

.badge-text {
  color: var(--color-background);
  font-size: 44px;
  font-weight: 700;
  animation-duration: 2s;
  animation-name: slide-up;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.badge-container {
  position: absolute;
  top: -27px;
  right: 0;
  filter: drop-shadow(0 1px 0 var(--color-primary)) drop-shadow(1px 0 0 var(--color-primary)) drop-shadow(-1px 0 var(--color-primary)) drop-shadow(0 -1px var(--color-primary));
}

@keyframes slide-up {
  from {
    translate: 0 1.39em;
  }
  to {
    translate: 0 0;
  }
}
/*********** HOME GRID ************/
.grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4rem 1rem;
  text-align: center;
  margin-bottom: 4rem;
}
.grid-home :last-child {
  grid-column: 1/4;
}
.grid-home > :nth-child(1), .grid-home > :nth-child(2) {
  border: 1px solid red;
}
.grid-home > :nth-child(2) {
  border-radius: 50%;
}
.grid-home > :nth-child(3) {
  text-align: start;
  align-items: start;
}

/*********** HOME TEXT BLOCKS ************/
.text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  text-transform: uppercase;
}
.text-block h2 {
  margin-bottom: 0.5rem;
}
.text-block :last-child {
  margin-bottom: 0;
}

.block-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  max-width: 475px;
  max-height: 200px;
  position: relative;
  margin: 0 auto;
  border: 1px dashed var(--color-primary);
}
.block-wrapper img {
  flex-shrink: 1;
  max-width: 40%;
  height: 100%;
  outline: 1px solid var(--color-primary);
}
.block-wrapper .text-block {
  flex-grow: 1;
  height: 100%;
  padding: 2rem 3rem;
}
.block-wrapper .text-block > :last-child {
  margin-top: 1rem;
}

.block-wrapper::after {
  content: url(../images/eyes.png);
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  pointer-events: none;
  transform: scale(0.35) translate(-70px, -200px);
  -o-object-fit: cover;
     object-fit: cover;
  animation-name: blink;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes blink {
  0% {
    content: url(../images/eyes.png);
  }
  93% {
    content: url(../images/eyes.png);
  }
  95% {
    content: url(../images/eyes-closed.png);
  }
  100% {
    content: url(../images/eyes.png);
  }
}
/*********** MENU PAGE ************/
h1.menu-title {
  border-left: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 0 3rem 0 1rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

h1.menu-title.alt {
  background-color: var(--color-background);
  color: var(--color-primary);
  padding: 0 3rem 0 1rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

h1.menu-title.no-border {
  border: none;
}

h1.menu-title.mobile {
  display: none;
}

.spacer {
  border-left: 1px solid var(--color-primary);
  min-height: 4rem;
}

.menu-container {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  gap: 5rem;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  gap: 5rem;
}

.menu-list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.menu-list.border {
  border-left: 1px solid var(--color-primary);
}

.menu-item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  max-width: 270px;
}
.menu-item h3 {
  text-transform: uppercase;
}
.menu-item ul {
  list-style: none;
  font-weight: 500;
}
.menu-item ul li {
  margin: 0.7em 0;
}
.menu-item ul.drink {
  list-style: none;
  font-size: 1.3em;
  font-weight: 700;
  max-width: 11em;
}
.menu-item ul.drink li {
  margin: 0.7em 0;
}
.menu-item ul.drink::after {
  content: "";
  position: absolute;
  bottom: -2.8em;
  left: -0.05rem;
  width: 11.5em;
  height: 18em;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
}

.menu-item.add-ons {
  border: 1px dashed var(--color-primary);
}

img.menu-img {
  max-width: 270px;
  outline: 1px solid red;
  margin-bottom: 2rem;
}

.menu-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1rem 2rem;
  border: 1px solid var(--color-primary);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8rem auto;
}

hr.menu {
  border: none;
  background-color: var(--color-primary);
  width: 100%;
  height: 1px;
  margin: 3rem 0 1.2rem 0;
  display: none;
}

hr.menu.drink {
  margin: 2rem 0 0 0;
}

.menu-item.tablet-alt {
  display: none;
}

/*********** CONTACT PAGE ************/
.form-wrapper {
  position: relative;
  overflow: hidden;
  margin: 4rem auto 6rem auto;
  max-width: 700px;
}
.form-wrapper h1 {
  margin-bottom: 1.4rem;
  z-index: 3;
  position: relative;
}
.form-wrapper > p {
  margin-bottom: 1.8rem;
}
.form-wrapper form {
  border: 1px dashed var(--color-primary);
  padding: 2rem;
  position: relative;
  background-color: var(--color-background);
}
.form-wrapper form input {
  width: 100%;
  min-height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: 0;
  border: 1px solid var(--color-primary);
  color: var(--color-secondary);
  background-color: var(--color-background);
}
.form-wrapper form input:focus-visible {
  outline: 1px solid var(--color-primary);
}
.form-wrapper form label {
  font-weight: 600;
}
.form-wrapper form textarea {
  min-width: 100%;
  max-width: 100%;
  max-height: 300px;
  min-height: 8rem;
  padding: 0.5rem;
  border-radius: 0;
  border: 1px solid var(--color-primary);
  color: var(--color-secondary);
  background-color: var(--color-background);
}
.form-wrapper form textarea:focus-visible {
  outline: 1px solid var(--color-primary);
}
.form-wrapper form .input-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.form-wrapper form .input-wrapper-row {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}

form::before {
  content: url(../images/star.svg);
  position: absolute;
  top: -8rem;
  right: 1rem;
  z-index: -1;
  transform: rotate(0deg);
  animation-name: spin;
  animation-duration: 60s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.contact-badge {
  max-width: 130px;
  position: absolute;
  top: 0rem;
  right: 14.5rem;
  z-index: 1;
}

/*********** MEDIA QUERIES ************/
@media (max-width: 1100px) {
  .container {
    max-width: var(--width-tablet);
  }
  h1.hero {
    font-size: 10rem;
  }
  .badge {
    transform: rotate(9deg) translate(34px, -45px) scale(0.75);
  }
  .menu-container {
    gap: 3rem;
  }
  .menu-wrapper {
    gap: 3rem;
  }
  .menu-item.tablet-alt {
    display: block;
  }
  .menu-item.desktop-alt {
    display: none;
  }
}
@media (max-width: 724px) {
  .container {
    max-width: var(--width-mobile);
  }
  body > * {
    padding: 0 8vw;
  }
  h1.hero {
    font-size: clamp(4rem, 23vw, 7rem);
  }
  .badge {
    transform: rotate(9deg) translate(110px, -44px) scale(0.36);
  }
  .grid-home {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  .grid-home :last-child {
    grid-column: 1;
  }
  .block-wrapper {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    max-height: none;
  }
  .block-wrapper img {
    max-height: 14rem;
    max-width: 100%;
  }
  .menu-container {
    flex-direction: column;
    margin-bottom: 11rem;
  }
  .menu-wrapper {
    flex-direction: column;
  }
  .menu-item {
    max-width: 350px;
  }
  h1.menu-title.mobile {
    display: block;
  }
  h1.menu-title.desktop {
    display: none;
  }
  .menu-cta {
    flex-direction: column;
    padding: 2rem;
  }
  .menu-list.border {
    border-left: none;
  }
  .spacer {
    border-left: none;
  }
  h1.menu-title {
    border-left: none;
  }
  hr.menu {
    display: block;
  }
  .form-wrapper form .input-wrapper-row {
    flex-direction: column;
    gap: 0;
  }
  form::before {
    top: -10rem;
    right: 0;
  }
  .contact-badge {
    top: 4rem;
    right: 0;
  }
  .form-wrapper h1 {
    margin-bottom: 4rem;
  }
}
@media (max-width: 350px) {
  .badge {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */