@import 'https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap';
@font-face {
  font-family: "DDCHardware Regular";
  src: url("../brewhive-website/fonts/DDCHardware-Regular.otf") format("opentype"), url("./fonts/DDCHardware-Regular.otf") format("opentype");
}
@font-face {
  font-family: "DDCHardware Condensed";
  src: url("../fonts/DDCHardware-Condensed.otf") format("opentype"), url("../brewhive-website/fonts/DDCHardware-Condensed.otf") format("opentype");
}
@font-face {
  font-family: "DDCHardware Compressed";
  src: url("../fonts/DDCHardware-Compressed.otf") format("opentype"), url("../brewhive-website/fonts/DDCHardware-Compressed.otf") format("opentype");
}
@font-face {
  font-family: "LubalGraph";
  src: url("../fonts/lubgrhb.ttf") format("truetype") url("../brewhive-website/fonts/lubgrhb.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "LubalGraph";
  src: url("../fonts/lubgrhm.ttf") format("truetype"), url("../brewhive-website/fonts/lubgrhm.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "LubalGraph";
  src: url("../fonts/lubgrhn.ttf") format("truetype"), url("../brewhive-website/fonts/lubgrhn.ttf") format("truetype");
  font-weight: 400;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes moveShadow {
  0% {
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
  }
  25% {
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
  }
  50% {
    box-shadow: rgba(240, 46, 170, 0.4) 5px -5px, rgba(240, 46, 170, 0.3) 10px -10px, rgba(240, 46, 170, 0.2) 15px -15px, rgba(240, 46, 170, 0.1) 20px -20px, rgba(240, 46, 170, 0.05) 25px -25px;
  }
  75% {
    box-shadow: rgba(240, 46, 170, 0.4) -5px -5px, rgba(240, 46, 170, 0.3) -10px -10px, rgba(240, 46, 170, 0.2) -15px -15px, rgba(240, 46, 170, 0.1) -20px -20px, rgba(240, 46, 170, 0.05) -25px -25px;
  }
  100% {
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
  }
}
:root {
  --text-color-dark: #231f20;
  --bg-color-light: #ffd533;
  --text-color-light: #ffd533;
  --bg-color-dark: #231f20;
  --highlight-color: #ff668c;
  --neutral-color: #eee;
  --size-100: 0.1rem;
  --size-200: 0.25rem;
  --size-300: 0.5rem;
  --size-400: 1rem;
  --size-500: 2rem;
  --size-600: 3rem;
  --size-700: 4rem;
  --size-800: 5rem;
  --size-900: 8rem;
}

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

.statutory-brand-logo {
  background: var(--bg-color-light);
  border: var(--bg-color-dark) 0.3125rem solid;
  border-radius: 50%;
  margin: 2rem auto;
  animation: moveShadow 30s linear infinite;
  width: 200px;
  height: 200px;
}
@media (min-width: 320px) {
  .statutory-brand-logo {
    padding: 1.2rem;
    padding-top: 2rem;
  }
}
@media (min-width: 450px) {
  .statutory-brand-logo {
    padding: 2.4rem;
    padding-top: 4rem;
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 800px) {
  .statutory-brand-logo {
    margin: 0 auto;
  }
}

.image-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-container img {
  height: 100%;
  width: 100%;
}

.age-restriction-warning {
  font-family: "LubalGraph";
  font-weight: 700;
  font-size: 1.2rem;
}
.age-restriction-warning .warning {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
}
.age-restriction-warning .warning span {
  position: relative;
  color: var(--text-color-dark);
  z-index: -1;
}
.age-restriction-warning .warning span::before {
  content: "";
  position: absolute;
  background: var(--highlight-color);
  height: 8px;
  width: 100%;
  bottom: 0.3rem;
  border-radius: 50px;
  z-index: -2;
}
@media (min-width: 375px) {
  .age-restriction-warning .warning {
    font-size: 2rem;
  }
}
@media (min-width: 800px) {
  .age-restriction-warning .warning {
    font-size: 3rem;
  }
}
.age-restriction-warning .options {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
  max-width: 18em;
}
.age-restriction-warning .options .yes-btn {
  background: var(--bg-color-dark);
  color: var(--text-color-light);
  border-color: var(--text-color-dark);
}
.age-restriction-warning .options .no-btn {
  background-color: var(--bg-color-light);
  color: var(--text-color-dark);
  border-color: var(--text-color-dark);
}
@media (min-width: 800px) {
  .age-restriction-warning {
    font-size: 3rem;
  }
}

.btn {
  font-family: "DDCHardware Regular";
  font-size: 1.2rem;
  background-color: var(--highlight-color);
  color: var(--text-color-dark);
  padding: 0.5rem 1.5rem;
  border: var(--highlight-color) solid 0.3rem;
  border-radius: 50rem;
  cursor: pointer;
  transform: scale(1);
  transition: transform background 300ms ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.btn:hover {
  transform: scale(1.05);
  background-color: var(--highlight-color);
}
.btn:active {
  transform: scale(0.95);
}
@media (min-width: 800px) {
  .btn {
    font-size: 2rem;
  }
}

.statutory-container {
  z-index: 1000;
  top: 0;
  position: fixed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--bg-color-light);
  transition: all 300ms;
  opacity: 1;
}
.statutory-container.close {
  opacity: 0;
  pointer-events: none;
}

.statutory {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 0%;
  width: 100%;
  transition: all 300ms ease;
  border-top: 1px solid var(--bg-color-dark);
  border-bottom: 1px solid var(--bg-color-dark);
  background-color: var(--bg-color-dark);
}
.statutory::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0px;
  width: 0px;
  border-radius: 50%;
  background-color: var(--bg-color-dark);
  transition: all 300ms ease-out;
}
.statutory.open {
  height: 100%;
  border-top: 50px solid var(--bg-color-dark);
  border-bottom: 50px solid var(--bg-color-dark);
  background-color: transparent;
}
.statutory.close {
  width: 0%;
  border-top: 1px solid var(--bg-color-dark);
  border-bottom: 1px solid var(--bg-color-dark);
  background-color: transparent;
  pointer-events: none;
}
.statutory.close::before {
  content: "";
  position: absolute;
  height: var(--size-500);
  width: var(--size-500);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
}

.marquee {
  z-index: 0;
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 2.5rem;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 800px) {
  .marquee {
    min-height: 6.5rem;
  }
}
.marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  height: max-content;
  animation: marquee 30s linear infinite;
}
.marquee .track .content {
  height: max-content;
  font-family: "DDCHardware Condensed";
  background-color: var(--text-color-dark);
  color: var(--text-color-light);
  font-size: 2rem;
}
@media (min-width: 800px) {
  .marquee .track .content {
    font-size: 5rem;
  }
}

.hero {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 35rem) {
  .hero .hero-text-area {
    max-width: 50%;
    margin: 2rem;
  }
}
.hero .hero-image {
  background-color: #eee;
  background-image: url("/images/brewhiveMain-Signage.svg"), url("../brewhive-website/images/brewhiveMain-Signage.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 450px;
  width: 100%;
  min-height: 350px;
  border-radius: 0.5rem;
}
@media (min-width: 35rem) {
  .hero .hero-image {
    margin: 2rem;
    max-width: 50%;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    animation: moveShadow 30s linear infinite;
  }
}
.hero .hero__title {
  margin-top: 1rem;
  font-family: "DDCHardware Regular";
  font-size: 3rem;
}
@media (min-width: 35rem) {
  .hero .hero__title {
    font-size: 5rem;
  }
}
.hero .hero__description {
  margin-top: 1rem;
  font-family: "LubalGraph";
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.2px;
  font-size: 1.5rem;
}
@media (min-width: 35rem) {
  .hero .hero__description {
    font-size: 1.6rem;
  }
}
@media (min-width: 35rem) {
  .hero {
    flex-direction: row-reverse;
  }
}

.logo {
  width: 3rem;
  vertical-align: middle;
  cursor: pointer;
}
.logo:hover {
  filter: saturate(50%) hue-rotate(6deg) brightness(200%) contrast(150%);
}

.primary-header {
  padding: 1rem 2rem;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-color-dark);
}

.primary-navigation {
  z-index: 1000;
  list-style: none;
  display: flex;
  transition: inset 300ms ease;
  background: var(--bg-color-dark);
}
@supports (-webkit-backdrop-filter: blur(16px)) {
  .primary-navigation {
    background: rgba(35, 31, 32, 0.9);
    -webkit-backdrop-filter: blur(16px);
  }
}
@supports (backdrop-filter: blur(16px)) {
  .primary-navigation {
    background: rgba(35, 31, 32, 0.9);
    backdrop-filter: blur(16px);
  }
}
.primary-navigation.show {
  inset: 0 0 0 30%;
}
@media (min-width: 800px) {
  .primary-navigation {
    gap: 2.75rem;
    inset: 0 0 90% 10%;
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media (max-width: 50rem) {
  .primary-navigation {
    position: fixed;
    padding: min(5vh, 10rem);
    padding-top: 10rem;
    inset: 0 0 0 100%;
    flex-direction: column;
    gap: min(5vh, 8rem);
  }
}
.primary-navigation a {
  position: relative;
  text-decoration: none;
  font-family: "DDCHardware Condensed";
  color: var(--text-color-light);
  font-size: 2rem;
  transition: color 300ms ease;
}
.primary-navigation a::before {
  transition: width 300ms ease;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  content: "";
  background: orange;
  height: 4px;
  bottom: 1px;
  width: 0%;
  transform: translateX(-50%);
}
.primary-navigation li a:hover {
  color: orange;
}
.primary-navigation li a:hover::before {
  content: "";
  background: orange;
  width: 100%;
}
.primary-navigation li.active > a {
  color: orange;
}
.primary-navigation li.active > a::before {
  content: "";
  background: orange;
  width: 100%;
}

.hamburger-menu {
  display: none;
  position: relative;
  z-index: 1001;
  user-select: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.hamburger-menu span {
  z-index: 1;
  position: relative;
  display: block;
  width: 2rem;
  height: 0.25rem;
  margin: 0.3125rem auto;
  border-radius: 50px;
  background-color: var(--bg-color-light);
  transform-origin: 0 0;
  transition: transform 300ms ease;
}
.hamburger-menu:active span {
  background: orange;
}
.hamburger-menu.is-active span:nth-child(2) {
  transform: translateX(50%) scaleX(0);
}
.hamburger-menu.is-active span:nth-child(1) {
  transform: translate(5.75px, -1.8px) rotate(45deg);
}
.hamburger-menu.is-active span:nth-child(3) {
  transform: translate(3px, 3px) rotate(-45deg);
}
@media (max-width: 50rem) {
  .hamburger-menu {
    display: block;
  }
}

html,
body {
  min-width: 320px;
  min-height: 480px;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-color-dark);
  color: var(--text-color-dark);
}

main {
  background: var(--bg-color-light);
}

.container {
  margin: 0 auto;
}

.beer {
  padding-top: 5rem;
}

/*# sourceMappingURL=style.css.map */
