html {
    font-size: 62.5%;
    color: white;
    height: 100%;
    width: 100%;
    background-color: #0a0505;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    font-family: "Montserrat", sans-serif;
  }
  
  body {
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    overscroll-behavior-y: none;
    min-height: 100vh;
  }

  @font-face {
    font-family: "workhood";
    src: url("fonts/workhood.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: "agrandirregular";
    src: url("fonts/agrandir_regular_400-webfont.woff2") format("woff2"),
      url("fonts/agrandir_regular_400-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }

  /* JS MENU START */

  .overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgb(230, 160, 40, 0.99);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 3.2rem;
  line-height: 4rem;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: white;
}

.overlay .closebtn {
  position: absolute;
  top: 19px;
  right: 25px;
  font-size: 60px;
  color: white;
}

@media screen and (max-width: 1600px) {
  .overlay a {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

@media screen and (max-width: 450px) {
  
  .overlay a {
    padding: 10px;
    font-size: 2.2rem;
    line-height: 2.6rem;
    transition: 0.3s;
  }
}

/* JS MENU END */

/* NAV */

nav {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0A0505;
}

.nav_logo {
  height: 64px;
  width: 84px;
}

@media only screen and (max-width: 600px) {
  nav {
    padding: 16px 20px;
  }
  .nav_logo {
    height: 48px;
    width: 64px;
  }
}

.nav_icon {
  height: 36px;
  width: 36px;
  margin: 14px;
  opacity: 0.8;
  transition: 0.4s;
}

/* NAV END */

/* hp-hero */

.hp-hero {
  width: 100%;
}

.hp-hero > img {
  width: 100%;
}

.hp-hero_desktop {
  display: block;
}

.hp-hero_mobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  .hp-hero_desktop {
    display: none;
  }
  
  .hp-hero_mobile {
    display: block;
  }
}

/* FOOTER */

footer {
  background: #0a0505;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer_icon {
  height: 35px;
  margin: 10px 0 10px 10px;
  opacity: 0.8;
  transition: 0.4s;
  cursor: pointer;
}

.footer_icon:hover {
  opacity: 1;
  transition: 0.4s;
  cursor: pointer;
}

footer > a {
  cursor: pointer;
}

.footer_blend-link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  top: 50px;
  opacity: 0.8;
  transition: 0.4s;
}

.footer_blend-link:hover {
  opacity: 1;
  transition: 0.4s;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .footer_blend-link {
    display: none;
  }
}

.blend-logo {
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  padding-left: 5px;
}

.footer_address {
  text-align: right;
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin: 20px;
  color: white;
  opacity: 0.8;
  transition: 0.4s;
}

.footer_address:hover {
  opacity: 1;
  transition: 0.4s;
}

/* FOOTER END */

/* H1 — P */

h1 {
  font-size: 6.4rem;
  line-height: 7.2rem;
  font-weight: 600;
  text-align: center;
}

h2 {
  font-size: 5.6rem;
  line-height: 6.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

h3 {
  font-size: 4rem;
  line-height: 4.8rem;
  font-weight: 600;
}

h4 {
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  text-decoration: underline;
}

p {
  font-size: 2rem;
  line-height: 3.2rem;
  margin-bottom: 10px;
  text-align: center;
  opacity: 0.6;
}

.align-left > * {
  text-align: left;
}

@media only screen and (max-width: 1000px) {
  h1 {
    font-size: 4.8rem;
    line-height: 5.6rem;
    text-align: center;
  }
  h2 {
    font-size: 3.8rem;
    line-height: 4.2rem;
    text-align: center;
  }
  h3 {
    font-size: 3.2rem;
    text-align: center;
  }
  h4 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    text-align: center;
  }
  p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

/* H1 — P END */

/* CONTAINER */

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inner {
  max-width: 1000px;
  height: 100%;
  padding: 0 24px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.full-page {
  min-height: 59vh;
}

/* CONTAINER END */

/* BG */

.bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: none;
}

/* BG END */

/* HEADER */



/* HEADER END */

/* BUTTONS */

.button {
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 16px 24px 16px 24px;
  margin-top: 40px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.button-dark {
  background-color: #0A0505;
  color: white;
}

.button-light {
  background: rgb(230, 160, 40);
  color: black;
}

.button-news {
  margin-top: auto;
  align-self: flex-start;
}

.email {
  font-size: 2.4rem;
  color: rgb(240, 170, 80);
  font-weight: 300;
  letter-spacing: 0.15rem;
}

/* BUTTONS END */

.index-hero {
  height: calc(100vh - 104px);
  background: grey;
  font-weight: 500;
  background-position: center;
  background-size: cover;
  background-repeat: none;
}

@media only screen and (max-width: 1000px) {
  .index-hero {
    height: calc(100vh - 90px);
  }
}

.st-food-awards {
  height: 120px;
  width: 137px;
  transform: rotate(-10deg);
  margin-bottom: 30px;
  margin-top: -30px;
}

.opening-container {
  display: flex;
  padding: 32px;
}

.opening-inner {
  text-align: left;
  width: 1200px;
  margin: auto;
  font-size: 2rem;
  line-height: 2.6rem;
  display: flex;
  justify-content: space-between;
  color: white;
}

.served {
  opacity: 0.5;
  font-size: 1.8rem;
  margin-left: -1px;
}

@media only screen and (max-width: 1000px) {
  .opening-inner {
    flex-direction: column;
    text-align: center;
  }

  .opening-inner > div {
    margin: 10px 0;
  }
}

.calendar {
  padding: 0 10px;
}

.nav_underline {
  height: 1px;
  background: rgb(255, 255, 255, 0.1);
}

/* FOOD PARTNERS */

.partners_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  padding: 0 40px;
}

.partner {
  background: rgb(255, 255, 255, 0.2);
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 3px;
  background-position: center;
  background-size: 100%;
  color: white;
  transition: all 0.4s ease-in-out;
  
}

.partner:hover {
  background-size: 104%;
  transition: all 0.4s ease-in-out;
}

.partner-link {
  position: absolute;
  top: 25px;
  left: 25px;
  display: none;
}

.partner-halal {
  position: absolute;
  top: 25px;
  right: 25px;
}

.partner-icon {
  height: 35px;
  filter: drop-shadow(0px 0px 10px rgb(0 0 0 / 0.5));
}

.partner-desc {
  position: absolute;
  bottom: 40px;
  text-align: center;
  width: 100%;
  text-shadow: 0px 0px 15px black;
}

.partner-name {
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-weight: 600;
  padding: 0 20px;
  margin-bottom: 5px;
}

.partner-tag {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-top: 8px;
  opacity: 0.8;
  padding: 0 20px;
}

@media only screen and (max-width: 1919px) {
  .partners_container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 1439px) {
  .partners_container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .partners_container {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 649px) {
  .partners_container {
    padding: 0 10px;
    grid-template-columns: 1fr;
  }
}

/* Partner Images */

.partner_cjs-brunch-club {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/cjs-brunch-club.jpg);
}

.partner_greek-gods {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/greek-gods.jpg);
}

.partner_little-dough {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/little-dough.jpg);
}

.partner_jimmys-burgers {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/jimmys-burgers.jpg);
}

.partner_hot-chick {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/hot-chick.jpg);
}

.partner_foundry-coffee {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/foundry-coffee.jpg);
}

.partner_leopard-pie {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/leopard-pie.jpg);
}

.partner_fuego-1987 {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/fuego1987.jpg);
}


.partner_konjo {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/konjo.jpg);
}

.partner_viet-danang {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/.jpg);
}

.partner_saiko-sushi {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/saiko-sushi.jpg);
}

.partner_bullion {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/greek-gods.jpg);
}

.partner_ma-ba {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/ma-ba.jpg);
}

.partner_boba-chai {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/boba-chai.jpg);
}

.partner_zawadi-cafe {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/zawadi-cafe.jpg);
}

.partner_zurul {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/zurul.jpg);
}

.partner_asia-thai {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/samui-thai.webp);
}

.partner_viet-da-nang {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5)
    ),
  url(/img/partners/viet-da-nang.jpg);
}

/* NEWS */

.press_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  margin: 0px 30px;
  column-gap: 20px;
  row-gap: 80px;
}

.press_item {
  color: white;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.press_img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.press_item-source {
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin: 30px 0px 15px 1px;
  opacity: 0.7;
}

.press_item-title {
  font-size: 2.8rem;
  line-height: 3.6rem;
  margin-bottom: 28px;
}

@media only screen and (max-width: 1600px) {
  .press_container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 1200px) {
  .press_container {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 800px) {
  .press_container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* CHRISTMAS */

.christmas-img {
  max-width: 800px;
  margin: auto;
  margin-top: 5vh;
  margin-bottom: 10vh;
  padding: 0 10px;
}

/* Christmas HP */

@font-face {
  font-family: "wagner";
  src: url("fonts/WagnerCondensed.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "workhood";
  src: url("fonts/workhood.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.christmas-inner {
  
  display: grid;
  grid-template-columns: 5fr 2fr;
}

.christmas-info {
  display: flex;
  flex-direction: column;
}

.christmas-info-title {
  font-family: 'wagner', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
  width: 100%;
  font-size: 7.8vw;
  margin: auto;
  line-height: 8.5vw;
  transform: translateY(8%);
  position: relative
}

.location {
  font-family: 'workhood';
  font-size: 1.8vw;
  line-height: 2.52vw;
  letter-spacing: 1.5vw;
  position: absolute;
  top: 8vw;
  left: 37vw;
}

.christmas-info_button {
  background: #f6a118;
  font-size: 2vw;
  line-height: 2vw;
  position: absolute;
  top: 8.37vw;
  left: 49vw;
  padding: 2.5vw 3vw 1.9vw;
  color: black;
  border-radius: 10px;
}

.christmas-video_mobile {
  display: none;
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url(/video/cw-christmas.mp4);
  background-position: center;
  background-size: cover;
}

.christmas-video_mobile video {
  display: block;
  width: 100vw;
  height: 100vh;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

@media only screen and (max-width: 1000px) {
  .christmas-video {
    display: none;
  }
  .christmas-inner {
    grid-template-columns: 1fr;
  }
  .location {
    left: 19vw;
  }
  .christmas-info_button {
    left: 28vw;
  }
}

@media only screen and (max-width: 500px) {
  .christmas-video {
    display: none;
  }
  .christmas-inner {
    grid-template-columns: 1fr;
  }

  .christmas-info-title {
    font-size: 13.5vw;
    line-height: 14.5vw;
  }

  .location {
    font-size: 3vw;
    line-height: 4.4vw;
    top: 27.9vw;
    left: 32vw;
  }

  .christmas-info_button {
   
    font-size: 4vw;
    line-height: 4vw;
    top: 28.4vw;
    left: 50vw;
    padding: 4.3vw 5.5vw 3vw;
    color: black;
    border-radius: 10px;
  }

  .christmas-video_mobile {
    display: block;
  }
}

.christmas-video {
  position: relative;
  width: auto;
  background: url(/video/cw-christmas.mov);
  background-position: center;
  background-size: cover;
}

.christmas-video video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}


/* CHRISTMAS TEST */


.workhood-christmas {
  font-family: 'workhood';
}

.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.scroll {
  display: flex;
  justify-content: center;
  margin: auto;
}

.scroll > img {
  min-height: 40px;
  max-height: 40px;
  margin: 0 5px;
}

.padded-inner {
  padding: 25px 50px 15px;
}

.trim {
  width: 100%;
  height: fit-content;
}

.christmas-container {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  text-align: center;
}


@media only screen and (max-width: 1100px) {
  .christmas-container {
    grid-template-columns: 1fr;
  }
}

.letsgo {
  margin-top: 20px;
  padding: 20px 40px 16px;
  border-radius: 5px;
}

.fizz-sticker {
  position: absolute;
  max-height: 120px;
  bottom: 20px;
  right: 20px;
}

@media only screen and (max-width: 1100px) {
  .fizz-sticker {
    margin: auto;
    right: auto;
    max-height: 100px;
  }
}

/* ABOUT */

.about_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  padding: 2dvw 40px;
  grid-gap: 20px;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.about_blend,
.about_contact,
.about_news {
  border-radius: 3px;
  padding: 4dvw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_blend {
  aspect-ratio: 4/3;
}

.about_blend {
  background: #ff753d;
  color: black;
}

.blend-title,
.map-title,
.contact-title {
  font-family: "workhood";
  font-size: 3.6rem;
  margin-bottom: 24px;
  margin-top: 14px;
}

.blend-divider {
  height: 2px;
  background: black;
}

.blend-desc {
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin: 35px 0 30px 0;
}

.blend-link,
.map-address {
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: 0.25rem;
  text-decoration: underline;
  margin-top: 36px;
}

.about_map {
  background: #112e12;
  color: #9ecc87;
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 3px;
}

.map-divider {
  height: 2px;
  background: #9ecc87;
}

.map-location {
  background: white;
  border-radius: 0 3px 3px 0;

  background-position: center;
  background-size: cover;
}

.about_contact {
  color: black;
  background: #ff8802;
}

.about_news {
  background: white;
}

.contact-desc {
  margin: 45px 0;
}

.button {
  padding: 15px 22px 13px 20px;
  font-size: 1.5rem;
  font-family: "agrandirregular";
  border-radius: 1px;
}

.about-button {
  display: inline-block;
  padding: 22px 28px 18px 28px;
  font-size: 1.8rem;
  font-family: "agrandirregular";
  border-radius: 2px;
  background: #1c0800;
  color: #ff8802;
  margin-top: 0;
  align-self: center;
  margin-top: 36px;
}

.map-info {
  padding: 4dvw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-desc {
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin-top: 35px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 1400px) {
  .blend-title,
  .contact-title,
  .map-title {
    font-size: 3.2rem;
  }

  .blend-desc {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 800px) {
  .about_container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .about_map {
    grid-column: 1;
  }

  .about_container {
    padding: 0 20px;
  }

  .about_map {
    grid-template-columns: 1fr;
  }

  .map-location {
    min-height: 400px;
  }
}

.hp-offers_container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.hp-offers_container > img {
  width: 100%;
}

@media only screen and (max-width: 1000px) {
  .hp-offers_container {
    grid-template-columns: 1fr;
  }
}

.book_container {
  background: #f6a118;
  padding: 20px;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
  url(/img/cw-hero.webp);

}

.book_inner {
  max-width: 800px;
  margin: auto;
  min-height: 80vh;
}

.book_desc, .book_form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  text-align: center;
}

.book_desc > h3 {
  font-size: 3.6rem;
  line-height: 4rem;
  margin-top: 10vh;
  margin-bottom: 20px;
}

.book_desc > p {
  opacity: 0.8;
  margin-bottom: 7vh;
}

.book_form {
  margin-bottom: 15vh;
  background: #f6a118;
  padding: 30px 50px;
  border-radius: 2px;
}

@media only screen and (max-width: 500px) {
  .book_container {
    padding: 10px;
  }
  .book_form {
    padding: 10px 20px;
    border-radius: 0;
  }
}

.booking-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #FFA000;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 600;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: #380000;

}

.booking-banner > img {
  max-height: 20px;
  margin-left: 7px;
  padding-bottom: 1px;
}

@media screen and (min-width: 1000px) {
  .booking-banner {
    display: none;
  }
}

.nav_book {
  position: absolute;
  top: 33px;
  right: 100px;
  background: white;
  color: black;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 16px 12px 16px;
  border-radius: 2px;
  letter-spacing: .1rem;
}

@media screen and (max-width: 1000px) {
  .nav_book {
    display: none;
  }
}

