/* ------ Menu of the day ----------- */
body {
  color: #ffffff;
  background-color: #292b33;
}

body::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}

@media only screen and (min-width: 1200px) {
  body::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}
/* -------------------------------- 

Main Components 

-------------------------------- */
@media only screen and (min-width: 1200px) {
  .menu-section {
    height: 100vh;
  }
}
.menu-section .intro {
  position: relative;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-weight: 700;
  font-size: 46px;
  font-size: 2.875rem;
  color: #fff;
  letter-spacing: normal;
}
@media (max-width: 767px) {
  .menu-section .intro {
    font-size: 32px;
    font-size: 2rem;
  }
}
.menu-section .intro span {
  display: block;
  font-family: 'Lora', serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  color: #fff;
}
@media (max-width: 767px) {
  .menu-section .intro span {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.txt_container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.txt_container ul li h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin-bottom: 0;
}
.txt_container ul li p {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-size: 1rem;
}

.m_title {
  margin-bottom: 45px;
}
.m_title h2:before {
  content: url("../images/daymenu/divider_2.svg");
  display: block;
  margin-bottom: 15px;
}
.m_title p {
  font-size: 16px;
  font-size: 1rem;
  color: #999;
}

.phone_us {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

.full-container,
.half-container {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.full-container {
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

.menu-section:first-of-type .full-container {
  visibility: visible;
  height: 100vh;
  background-color: #24262d;
}

@media only screen and (min-width: 1200px) {
  .full-container {
    position: fixed;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    visibility: hidden;
  }

  .menu-section:first-of-type .full-container {
    visibility: visible;
  }

  .full-container > * {
    visibility: visible;
  }
}
.half-container {
  background: #fff url(../images/restaurant/bar-menu/pattern-menu.webp) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #263b40;
  text-align: center;
}

.half-container:nth-of-type(1) {
  height: 60vh;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
}

.half-container:nth-of-type(2) {
  padding: 4em 10%;
}

.menu-section:nth-of-type(2) .half-container:first-of-type {
  background-image: url('../images/restaurant/bar-menu/spirits-windmill-resort.webp');
  background-size: cover;
}

.menu-section:nth-of-type(3) .half-container:first-of-type {
  background-image: url('../images/restaurant/bar-menu/beer-windmill-resort.webp');
  background-size: cover;
}

.menu-section:nth-of-type(4) .half-container:first-of-type {
  background-image: url('../images/restaurant/bar-menu/cocktails-windmill-resort.webp');
  background-size: cover;
}

.menu-section:nth-of-type(5) .half-container:first-of-type {
  background-image: url('../images/restaurant/bar-menu/bar-last-windmill-resort.webp');
  background-size: cover;
}

.menu-section:nth-of-type(6) .half-container:first-of-type {
  background-image: url("../images/daymenu/images-5.jpg");
  background-size: cover;
}

@media only screen and (min-width: 1200px) {
  .half-container {
    height: 100vh !important;
    width: 50%;
    position: absolute;
    top: 0;
  }
  .half-container .txt_container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding: 0 20%;
    text-align: center;
  }

  .menu-section:nth-of-type(even) .half-container:first-of-type,
  .menu-section:nth-of-type(odd) .half-container:nth-of-type(2) {
    left: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .menu-section:nth-of-type(odd) .half-container:first-of-type,
  .menu-section:nth-of-type(even) .half-container:nth-of-type(2) {
    right: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.vertical-nav {
  position: fixed;
  z-index: 1;
  right: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.vertical-nav a {
  display: block;
  height: 40px;
  width: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: transparent url(../images/daymenu/icon-arrow.svg) no-repeat center center;
  -webkit-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  transition: opacity 0.2s 0s, visibility 0.2s 0s;
}
.vertical-nav a.prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-bottom: 10px;
}
.vertical-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

ul.top-nav,
ul.vertical-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav {
  position: fixed;
  z-index: 1;
  right: 15px;
  top: 2%;
  bottom: auto;
}
.top-nav a {
  display: block;
  height: 40px;
  width: 40px;
  font-size: 36px;
  opacity: 0.5;
  cursor: pointer;
}
.top-nav a:hover {
  color: #24262d;
  opacity: 1;
}

@media only screen and (min-width: 1200px) {
  .vertical-nav {
    display: block;
  }
}



/*=========================================================
  CUSTOM BAR MENU CSS
=========================================================*/


/*=========================================================
  COMMON - TWO COLUMN MENU
=========================================================*/

.menu_columns.columns_2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    column-gap: 30px;
    row-gap: 20px;
    transform: none;
}

.menu_columns.columns_2 .menu_category {
    width: 100%;
}

.menu_columns.columns_2 .bar-heading,
.menu_columns.columns_2 .bar-row {
    width: 100%;
    grid-template-columns: minmax(175px, 1fr) 45px 45px 60px;
    column-gap: 8px;
}


/*=========================================================
  COMMON - BAR HEADINGS & ROWS
=========================================================*/

.bar-heading,
.bar-row {
    display: grid;
    grid-template-columns: 320px 55px 55px 70px;
    column-gap: 18px;
    align-items: center;
}

.bar-heading {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.bar-row {
    padding: 3px 0;
}

.bar-heading div:not(:first-child),
.bar-price {
    text-align: right;
}

.bar-price {
    white-space: nowrap;
}

.bar-name {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-dots {
    flex: 1;
    height: 1px;
    margin-top: 4px;
    background: repeating-linear-gradient(
        to right,
        #777 0,
        #777 2px,
        transparent 2px,
        transparent 8px
    );
}


/*=========================================================
  COMMON - TITLES
=========================================================*/

.m_title {
    margin-bottom: 0;
}

.m_title h2 {
    text-align: left;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.m_title h2:before,
.m_title:after {
    display: none !important;
}


/*=========================================================
  COMMON - CATEGORY
=========================================================*/

.menu_category {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.menu_columns.columns_2 .menu_category + .menu_category {
    margin-top: 10px;
}


/*=========================================================
  ITEMS WITH ONLY ONE PRICE COLUMN
=========================================================*/

.menu_columns.columns_2 .bar-heading.price-count-1,
.menu_columns.columns_2 .bar-row.price-count-1 {
    grid-template-columns: minmax(175px, 1fr) 60px;
    column-gap: 8px;
}


/*=========================================================
  SPREAD 1
=========================================================*/

.bar-spread-1 .menu_columns.columns_2 {
    width: 115%;
    margin-left: -7.5%;
}

.bar-spread-1 .menu_columns.columns_2 .bar-heading,
.bar-spread-1 .menu_columns.columns_2 .bar-row {
    grid-template-columns: minmax(0, 1fr) 35px 35px 50px;
    column-gap: 5px;
}


/*=========================================================
  SPREAD 2
=========================================================*/

.bar-spread-2 .menu_columns.columns_2 {
    width: 100%;
    transform: none;
    box-sizing: border-box;
}


/*=========================================================
  SPREAD 3 - COCKTAILS / MOCKTAILS
=========================================================*/

.bar-spread-3 .menu_columns.columns_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 45px;
    width: 115%;
    margin-left: -7.5%;
    box-sizing: border-box;
}

.bar-spread-3 .menu_columns.columns_2 .menu_column,
.bar-spread-3 .menu_columns.columns_2 .menu_category {
    width: 100%;
    min-width: 0;
}


/*---------- SPREAD 3 - CATEGORY HEADING ----------*/

.bar-spread-3 .menu_columns.columns_2 .m_title h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 15px;
    text-align: left;
}


/*---------- SPREAD 3 - LIST ----------*/

.bar-spread-3 .menu_columns.columns_2 .menu_category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bar-spread-3 .menu_columns.columns_2 .menu_category li {
    margin: 0 0 15px;
    padding: 0;
    text-align: left;
}


/*---------- SPREAD 3 - NAME + PRICE ----------*/

.bar-spread-3 .menu_columns.columns_2 .menu_category li .d-flex {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 50px;
    column-gap: 12px;
    width: 100%;
    align-items: start;
}


/*---------- SPREAD 3 - ITEM NAME ----------*/

.bar-spread-3 .menu_columns.columns_2 .menu_category li h3 {
    min-width: 0;
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
}


/*---------- SPREAD 3 - DESCRIPTION ----------*/

.bar-spread-3 .menu_columns.columns_2 .menu_category li p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    font-style: italic;
    text-align: left;
    white-space: nowrap;
}


/*---------- SPREAD 3 - PRICE ----------*/

.bar-spread-3 .menu_columns.columns_2 .menu_category li strong {
    display: block;
    width: 50px;
    margin: 0;
    padding: 2px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    text-align: right;
    white-space: nowrap;
}


/*=========================================================
  MOBILE BAR MENU
=========================================================*/

@media only screen and (max-width: 767px) {

    .menu_columns.columns_2,
    .menu_columns.columns_1 {
        display: block;
        width: 100%;
        transform: none;
    }

    .menu_category {
        width: 100%;
        min-width: 0;
        margin-bottom: 28px;
    }


    /*---------- MOBILE ROWS ----------*/

    .bar-heading,
    .bar-row {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 32px 32px 48px !important;
        column-gap: 6px;
        align-items: center;
    }

    .bar-heading {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 7px;
    }

    .bar-row {
        padding: 3px 0;
    }


    /*---------- MOBILE NAME ----------*/

    .bar-name {
        min-width: 0;
        text-align: left;
    }


    /*---------- MOBILE PRICE ----------*/

    .bar-price {
        min-width: 0;
        text-align: right;
        white-space: nowrap;
    }


    /*---------- MOBILE TITLES ----------*/

    .m_title {
        margin-bottom: 8px;
    }

    .m_title h2 {
        font-size: 22px;
        margin: 0;
        text-align: left;
    }


    /*---------- MOBILE SINGLE PRICE ----------*/

    .bar-heading.price-count-1,
    .bar-row.price-count-1 {
        grid-template-columns: minmax(0, 1fr) 48px !important;
        column-gap: 8px !important;
    }


    /*---------- SPREAD 1 MOBILE ----------*/

    .bar-spread-1 .menu_columns.columns_2 {
        width: 100%;
        margin-left: 0;
    }


    /*---------- SPREAD 2 MOBILE ----------*/

    .bar-spread-2 .menu_columns.columns_2 {
        width: 100%;
        transform: none;
    }


    /*---------- SPREAD 3 MOBILE ----------*/

    .bar-spread-3 .menu_columns.columns_2 {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        transform: none;
    }

    .bar-spread-3 .menu_columns.columns_2 .menu_column,
    .bar-spread-3 .menu_columns.columns_2 .menu_category {
        width: 100%;
        min-width: 0;
    }

    .bar-spread-3 .menu_columns.columns_2 .menu_category li p {
        white-space: nowrap;
       
    }

    .bar-spread-3 .menu_columns.columns_2 .menu_category li .d-flex {
        grid-template-columns: minmax(0, 1fr) 50px;
    }
    

}

/*=========================================================
  SPREAD 3 - TABLET
=========================================================*/

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .bar-spread-3 .menu_columns.columns_2 {
        width: 100%;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

}

/*=========================================================
  SPREAD 3 - TABLET POSITION
=========================================================*/

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .bar-spread-3 .menu_columns.columns_2 {
        width: 650px;
        max-width: 650px;
        margin-right: 0;
    }

}

/* =========================================
   BAR MENU - COVER PAGE
========================================= */

.bar-cover-logo {
    width: 350px;
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}

.bar-cover-logo-res {
    width: 150px;
    max-width: 40%;
    height: auto;
    display: block;
    margin: 25px auto 25px;
}


.menu-section:first-of-type .intro h2 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 600;
}

.menu-section:first-of-type .intro > span {
    display: block;
    font-size: 15px;
    margin-bottom: 15px;
}

.bar-cover-description {
    max-width: 500px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}

.bar-spread-last-logo {
  width: 30%;

}

/* MOBILE */
@media only screen and (max-width: 767px) {

    .bar-cover-logo {
        width: 300px;
        max-width: 65%;
        margin-bottom: 20px;
    }

    .menu-section:first-of-type .intro h2 {
        font-size: 26px;
    }

    .menu-section:first-of-type .intro > span {
        font-size: 13px;
    }

    .bar-cover-description {
        font-size: 13px;
        max-width: 90%;
    }
    
    .bar-spread-4 .phone_us {
        white-space: nowrap;
        font-size: 1.2rem;
    }
}


/* =========================================
   BAR MENU - COVER BACKGROUND
========================================= */

.bar-menu-cover {
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('../images/restaurant/bar-menu/bar-cover-bg.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bar-menu-cover .full-container {
    background: transparent !important;
}

.bar-menu-cover .intro {
    top: 60%;
}

.bar-menu-cover .intro > span,
.bar-menu-cover .bar-cover-description {
    color: #fff;
    text-shadow:
        -3px -3px 0 #000,
         3px -3px 0 #000,
        -3px  3px 0 #000,
         3px  3px 0 #000,
         0   -3px 0 #000,
         0    3px 0 #000,
        -3px  0   0 #000,
         3px  0   0 #000;
}
.bar-cover-logo {
    filter:
        drop-shadow(2px 0 0 #000)
        drop-shadow(-2px 0 0 #000)
        drop-shadow(0 2px 0 #000)
        drop-shadow(0 -2px 0 #000)
        drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.7));
}

.bar-cover-logo-res {
    filter:
        drop-shadow(2px 0 0 #000)
        drop-shadow(-2px 0 0 #000)
        drop-shadow(0 2px 0 #000)
        drop-shadow(0 -2px 0 #000)
        drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.7));
}


.menu-section .half-container:has(.bar-spread-image-logo) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-image-panel {
    position: relative;
}

.bar-spread-overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.bar-spread-overlay .bar-spread-image-logo {
    position: static !important;
    display: block !important;
    width: 280px;
    height: auto;
    margin: 0 auto 10px;
    transform: none !important;
}

.bar-spread-image-description {
    display: block;
    margin: 0 auto;
    max-width: 250px;
    color: #000000;
    font-family: 'Lora', serif;
    font-size: 14px;
     font-style: italic;
    line-height: 1.4;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bar-spread-overlay .bar-spread-image-logo {
        width: 125px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) {
    .bar-spread-overlay .bar-spread-image-logo {
        width: 190px;
    }
     .bar-spread-overlay {
        top: 25%;
    }
    .bar-spread-1 .menu_columns.columns_2 {
      width: 98%;
      margin-left: auto;
      margin-right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .bar-spread-overlay {
        top: 25%;
    }

    .bar-spread-overlay .bar-spread-image-logo {
        width: 145px;
        margin-bottom: 0;
    }

    .bar-spread-image-description {
        font-size: 12px;
        max-width: 60%;
        margin-top: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .menu-section .half-container .txt_container {
        padding-left: 8%;
        padding-right: 12%;
    }

    .menu-section .menu_columns {
        font-size: 14px;
    }

    .bar-spread-1 .menu_columns.columns_2 {
        max-width: 530px;
        margin-left: auto;
        margin-right: auto;
    }
       .bar-spread-3 .menu_columns.columns_2 {
        max-width: 530px;
        margin-left: auto;
        margin-right: auto;
    }
.bar-spread-3 .menu_columns.columns_2 .menu_category li p {
    white-space: normal;
    width: 250px;
}


}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (orientation: landscape) {
   .bar-spread-overlay {
        top: 26%;
    }
    .bar-spread-overlay .bar-spread-image-logo {
        width: 180px;
    }
    .bar-spread-image-description {
        font-size: 12px;
        max-width: 200px;
        margin-top: -10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (orientation: landscape) {

    .menu-section .menu_columns.columns_2 {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
         column-gap: 80px;
    }

}