

html, body {
  margin: 0;
  padding: 0;
}

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

a{
  color:teal;
}

a:hover{
  color:#FF4705;
}

a.white, .white {
  color: white;
}

body {
  background: #000;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin:0;
}

p{
  margin: 1em 0;
  line-height: 1.6em;
  font-size: 1.1em;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

ol, ul{
  line-height: 1.6em;
  font-size: 1.1em;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

.txt-center {
  text-align: center;
}

form#myForm label {
  color: white;
}

  /* Basic styling for breadcrumbs */
  .breadcrumb {
    font-size: .9em;
}

.breadcrumb a {
    text-decoration: none;
    color: #FF4705;
    margin-right: 5px;
    margin-left: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #6c757d;
}

/** Links **/
.hover-1 {
  display: inline-block;
  position: relative;
  color: #FF4705;
}

.hover-1:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FF4705;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-1:hover:after, .active .hover-1:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/** Heading **/

h1, h2, h3, h4{
  margin-bottom: .5em;
}

h1, h2{
  font-family: 'Bebas Neue', sans-serif;
}

h1{
  font-size: 5em;
}

h2{
  font-size:2.5em;
}

h2.fire {
  margin-top: 3em;
}

h3{
  font-size:1.6em;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

.subtitle {
    margin: 1em auto 0;
    width:80%;
    font-size: 2em;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.logo{
  width:300px;
  position:absolute;
  z-index: 99999;
  padding:2em;
}

header {
  position: relative;
  background: #000;
  max-height: 110vh;
  overflow: hidden;
}

.hero-heading {
    position: absolute;
    color: #fff;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    top: 40%;
    z-index: 10;
}

.hero-video {
  filter: brightness(0.7);
}

.top-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


/** Hero Images **/

.hero{
  background-attachment: fixed !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height:50vw;
}

.entertainment-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/entertainment-hero.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

.grill-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/on-site-grilling-hero.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

.catering-hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/catering-hero1.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

.emergency-hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/emergency-hero.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

/****** Nav Menu ********/

.nav {
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: .5fr 10fr;
  padding:0;
}

.nav ul {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5em;
}

.nav ul li {
  display: inline-block;
  padding: 1em 2em;
}

.nav a {
  color: white;
  text-decoration: none;
}

.hidden {
  display: none;
}
/* Styles when the icon should show */
 .sticky #homeLink {
  display: inline-block; /* or "block" depending on your layout */
}

.hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    cursor: pointer;
  }

  .nav ul {
    display: none;
  }

  .nav ul {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%; /* start off-screen */
    background-color: rgba(0, 0, 0, 0.9); /* semi-transparent black */
    color: white;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s;
  }

  .nav.active ul {
    left: 0; /* slide in */
  }
}


/*****  Buttons ***********/

a.action-btn {
  text-align: center;
  color: white;
  z-index: 999999;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2em;
  font-family: 'Bebas Neue', sans-serif;
  border: 1px white solid;
  border-radius: 50px;
  min-width: 150px;
  padding: 0.4em 1em;
}

a.action-btn.hero-cta {
    position: absolute;
    margin: 3em;
    right: 0;
    border: 1px white solid;
    border-radius: 50px;
    min-width: 150px;
    padding: 0.4em 1em;
}

a.action-btn.lg {
  font-size: 1.4em;
}

.cta-blk {
  margin-top: 2em;
}

a.action-btn:hover{
  border: 1px #FF4705 solid;
  color: #FF4705;
}

a.action-btn-blk {
  text-align: center;
  z-index: 999999;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2em;
  font-family: 'Bebas Neue', sans-serif;
  margin: 2em auto;
  min-width: 150px;
  max-width:200px;
  padding: 0.3em 2em;
  border: 1px black solid;
  border-radius: 50px;
  text-align: center;
  color: black;
}

.actions {
  text-align: center;
  margin: 3rem 0;
}
.actions a {
  -webkit-transition: 0.3s background, 0.3s color;
  -moz-transition: 0.3s background, 0.3s color;
  transition: 0.3s background, 0.3s color;
  display: inline-block;
  border: 1px solid #EE502E;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 200;
  vertical-align: middle;
  text-decoration: none;
}
.actions a .button-icon {
  font-size: 16px;
  color: #EE502E;
}

.actions a:hover {
  background: rgba(238, 80, 36, 0.25);
}
.actions button a {
  -webkit-transition: 0.3s background, 0.3s color;
  -moz-transition: 0.3s background, 0.3s color;
  transition: 0.3s background, 0.3s color;
  display: inline-block;
  border: 1px solid #EE502E;
  color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 200;
  vertical-align: middle;
  padding: 1rem 5rem;
}
.actions button a .button-icon {
  margin-right: .55rem;
  font-size: 16px;
  color: #EE502E;
}

.cta-white{
  margin: 2em auto;
  min-width: 150px;
  max-width:200px;
  border: 1px white solid;
  border-radius: 50px;
  text-align: center;
  padding: 0.5em 1em;
  color:white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2em;
  font-family: 'Bebas Neue', sans-serif;
}

.cta-btn {
  margin: 3em 0;
}

.inline div, .inline h2 {
  display: inline-block;
}

img.fire-icon {
  margin-right: 0.5em;
  max-height: 50px;
  margin-left: -2.5em;
}


/**** Homepage Intro *****/

.intro{
  background: white;
  position: relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
}

.intro-txt{
  line-height: 1.9em;
  padding: 7em;
  font-size: 1.2em;
  padding-bottom: 5em;
}

.intro-img img {
  width: auto;
  height: 100%;
  float: right;
}

.intro-img {
  overflow: hidden;
}

.text {
  color: #fff;
  font-weight: 200;
  text-align: center;
}
.text h1 {
  font-weight: 200;
  text-transform: uppercase;
  text-shadow: 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.text a {
  color: #fff;
  text-decoration: none;
}
.text a:hover {
  text-decoration: underline;
}

.c-btn {
  color: #FFF;
  text-decoration: none;
  position: relative;
  display: inline-block;
  font-size: 18px;
  height: 100%;
  padding:.5em;
}
.c-btn:after {
  content: '';
  display: block;
  position: absolute;
}
.c-btn:before {
  content: '';
  display: block;
  position: absolute;
}

/************ Carousel ************/

.slider {
    width: 100%;
    margin: 0px auto;
}

.slick-slide {
  margin: 0px;
}

.slick-slide img {
  width: 100%;
  filter: brightness(0.4);
}

.slick-prev:before,
.slick-next:before {
  color: #bbb;
}


.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}

.slick-active {
  opacity: .5;
}

.slick-current {
  opacity: 1;
}
.slick-prev, .slick-next {
    z-index: 999999;
}

@media (max-width:40em){
  .slick-prev:before, .slick-next:before {
    font-size: 30px;
  }
}



/** Menu Section Homepage **/

.menu-home {
  display: relative;
}

.menu-home-img {
  max-width: 600px;
  overflow: hidden;
}

.menu-home-img img {
  max-height: 950px;
}

.menu-txt .inline img.fire-icon {
  width: 30px;
  margin: 0 0.5em 0;
}

.menu-txt p {
  font-weight: 100;
}

/**** Image Modal on Homepage ******/

.menu-gal{
  display:grid;
  grid-template-columns: 1fr 2fr;
  background:#000;
}
.noscroll {
  position: fixed;
  overflow-y: scroll;
}

.gal-modal {
  width: 75%;
  margin: 0 auto;
}

.gal-txt h2 {
  padding-top: 2em;
}


.gal-txt{
  color:#ffffff;
  margin:auto;
}

.zoom-img {
  position: fixed;
  transition: all 300ms ease-in-out;
  transform-origin: center;
  transform: translateY(0) translateX(0);
  max-width: 80vw;
  max-height: 90vh;
  cursor: pointer;
}
.zoom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-img.zoom {
  top: 50% !important;
  transform: translateY(-50%) translateX(-50%);
  height: 45vw !important;
  width: 80vw !important;
  left: 50% !important;
  right: 0 !important;
}

.gal-content {
  margin: 70px 0;
  text-align: center;
}
.gal-content .img-wrapper {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  align-items: stretch;
  -webkit-align-items: stretch;
  border-radius: 2px;
}
.gal-content .img-wrapper div {
  height: 300px;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  align-self: stretch;
  -webkit-align-self: stretch;
  overflow: hidden;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}
.gal-content .img-wrapper div:hover img {
  opacity: 1;
  transform: scale(1.05) rotate(0.4deg);
}
.gal-content .img-wrapper div.popout {
  position: fixed;
  top: 50%;
  width: 80%;
  margin: 0 auto;
  height: auto;
  left: 0;
  right: 0;
  z-index: 1;
  border: 10px solid;
  transform: translateY(-50%);
}
.gal-content .img-wrapper div.popout img {
  opacity: 1;
}
.gal-content .img-wrapper .img-one {
  width: 200px;
}
.gal-content .img-wrapper .img-two {
  width: 250px;
}
.gal-content .img-wrapper .img-three {
  width: 300px;
}
.gal-content .img-wrapper .img-four {
  width: 350px;
}
.gal-content .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: all 200ms ease-in-out;
}


.menu-item img{
  width: 125px;
  border-radius: 50%;
  float:left;
  margin: 1em;
}

.menu-item {
  height: auto;
  display: inline-block;
  margin: 2em 0 0;
}

.menu-txt {
  color:#fff;
}

.menu-txt h3{
  margin-bottom:.5em;
}

.specials {
  margin-left: 8vw;
  margin: 3em 8em;
}

.list li {
  padding: 1em;
}

.padding{
  padding:10em;
}

span.inline {
  padding-left: 1.1em;
}
/***** Parallax section ****/


.para-container {
  perspective: 1px;
  height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  background-image:url(images/wall-bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow:hidden;
  position:relative;
}

.para1 {
  left:900px;
  top: 700px !important;
}
.para2{
  top: 1000px !important;

}
.para3{
  left: 500px;
  top: 500px;
}

.para4{
  left: 550px;
  top: 300px !important;
}

.para5{
  top: 1450px !important;
  left: 850px;
}


.level1 {
  transform: translateZ(-2px) scale(3); /* moves slower than level2 */
  margin-left: 40em;
}
.level2 {
  transform: translateZ(-1px) scale(2); /* moves slower than scroll */
}
.level3 {
  transform: translateZ(0); /* moves at same pace as scroll */
}



/** CTA Section **/

section.reserve-cta {
  min-height: 600px;
  color:white;
  text-align: center;
  padding:10em 1em;
}

section.reserve-cta:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: -1;
    background-image: url(../images/event-cta-bg.jpg);
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
}

section.grill-cta {
  min-height: 600px;
  color:white;
  text-align: center;
  padding:10em 0;
}

section.entertainment-cta, section.emergency-cta {
  min-height: 600px;
  color:white;
  text-align: center;
  padding:10em 0;
}

section.entertainment-cta:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: -1;
  background-image: url(../images/entertainment-cta.jpg);
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

section.emergency-cta:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: -1;
  background-image: url(../images/emergency-cta.jpg);
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

section.grill-cta:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: -1;
  background-image: url(../images/steak-hero2.jpg);
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

section p {
    font-size: 1.3em;
}


/*** Footer ****/


footer{
  background-color:#FF4705;
  height:auto;
  color:#fff;
  padding-top:1em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-logo img{
  max-width: 250px;
  padding: 1em;
}

.footer-nav{
  padding-top:1em;
}

.footer-nav a:link, .footer-nav a:visited, .footer-nav a:hover {
  color: #fff;
  padding: 0 .7em;
  text-decoration: none;
}
.footer-contact-lnk{
    text-align: right;
    color: white;
    z-index: 999999;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.4em;
    font-family: 'Bebas Neue', sans-serif;
    display: block;
    padding:1em;
}

.footer-contact-lnk:hover{
  color: white;
  text-decoration: underline;
}

a.footer-lnk{
  color: white;
  text-align: right;
  padding-right:1em;
  display:block;
  text-decoration:none;
}

a.footer-lnk:hover{
  color: white;
  text-decoration: underline;
}

p.copyright {
  margin-top: 5em;
  font-size: .9em;
}


/****** Menu Page *********/

.menu-hero{
  background: url("../images/fine-cuisine.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height:50vw;
}

.menu-intro{
  background-image:url("../images/wall-bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-intro .intro-txt {
  color: #252525;
  max-width:70%;
  padding-bottom: 1em;
}


/***** Menu Items ********/

.menuItem {
  margin: 2em 0;
}
.menuName{
  float:left;
  font-weight: 800;
}
.price{
  padding-left:3em;
  text-align:right;
}
.description{
  clear:both;
  text-align:left;
  max-width: 90%;
}
.menu {
  width: 80%;
  margin: 0 auto;
}

#menu{
  width: 50%;
  margin: 0 auto;
  font-size: 1.2em;
  padding-bottom: 2.5em;
}

.wine-menu{
  background-image: url("../images/wine-list-bg.jpg");
  background-repeat: no-repeat;
  min-height:49vw;
  position: relative;
  background-size:cover;
}

.wine-intro{
  position: absolute;
  color:#fff;
  text-align: center;
  line-height: 1.7em;
  width:100%;
  margin: 0 auto;
  padding: 7em 0;
  top:35%;
}
.wine-intro h2{
  position: relative;
  top: 40%;
  font-size:2.4em;
}

.wine-intro h3{
  position: relative;
  top:50%;
}

.wine-intro p {
  font-size: 1.2em;
}

#wine-menu {
    width: 50%;
    margin: 0 auto;
    font-size: 1.2em;
    padding-bottom: 2.5em;
  }

.wine-menu-h {
  text-align: center;
  padding-top: 4.5em;
}

.wine-container {
  background-image:url(../images/wall-bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/******* About Page *******/

.about-hero{
  background: url('../images/turaskys-truck.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height:50vw;
}

p.lg-txt {
  font-size: 1.6em;
  font-family: 'Raleway';
  font-weight: 400;
  line-height: 1.3em;
  text-align: left;
}

.about-intro-txt{
  line-height: 1.5em;
  margin: 0 auto;
  line-height: 1.9em;
  padding: 2em 7em;
  font-size: 1.2em;
}

.about-hero-2{
  background: url('../images/about-hero-2.jpg');
  background-repeat: no-repeat;
  min-height:49vw;
  position: relative;
  background-size:cover;
}

div#map {
  margin: 2em auto;
  width: 80%;
  height: 500px;
  box-shadow: #ccc 5px 5px 15px;
}

#distance{
  text-align: center;
}

#location{
  text-align: left;
}


.map-container{
  height: auto;
  background-image:url(../images/wall-bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*********** Gallery Page *********/

.gallery-hero{
  background: url('../images/gallery-hero.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height:50vw;
}


#galleryImages {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-bottom:5em;
}

#galleryImages img {
  width: 20vw;
  height: 15vw;
  vertical-align: middle;
  object-fit: cover;
}

/************* Contact Form ***********/

.contact-hero {
  position: relative;
  height: 50vw;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/catering-hero.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

.venues-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/gallery-hero.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.8);

}


.about-hero::before{
  background: url('../images/turaskys-truck.jpg');
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

.contact-intro{
  width:100%;
}
.contract-intro .intro-txt {
  padding: 7em 0 2em;
  min-width: 70%;
  color: white;
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

form {
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 6em;
}

.feedback-input {
  color:white;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #df5b3c;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #CC4949; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  text-align: center;
  min-width:100%;
  display: inline-block;
  border: 1px solid #EE502E;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 200;
  vertical-align: middle;
  padding: 1rem 5rem;
  font-size: 16px;
  background:#000;
}
[type="submit"]:hover { background:#EE502E; }

form input:focus:invalid, form textarea:focus:invalid{
  background: rgba(238, 80, 36, 0.25) url(../images/invalid.png) no-repeat 98%; /* center */
  box-shadow: 0 0 5px #d45252;
  border-color: #EE502E;
}


#display {
  color: teal;
  text-align: center;
}
#display p {
  margin-bottom: 30vw;
}


/**** Intro Parallax ****/


#hero {
  height: 700px;
  overflow: hidden;
  position: relative;
}


.layer {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 800px;
  position: fixed;
  z-index: -1;
}

.layer-02 {
  background-image: url("../images/para9.png");
  top:500px;
}

.layer-03 {
  background-image: url("../images/para1.png");
  top:300px;
}

.layer-04 {
  background-image: url("../images/para4.png");
}

.layer-06 {
  background-image: url("../images/para7.png");
}

.layer-07 {
  background-image: url("../images/para8.png");
}
.layer-08 {
  background-image: url("../images/para9.png");
}


.para-container img {
  position: absolute;
}



@media (max-width: 450px){
  .hero-video {
    height: 130vw;
}
  .subtitle {
    margin: 0 auto;
    font-size: 1.4em;
  }

  .actions {
    margin: 1rem 0;
  }

  .layer.para2 img {
    max-width: 300px;
  }

  .layer.para1 img {
    max-width: 350px;
  }

  .layer.para5 img {
    min-width: 300px;
  }

  .para1 {
    left: 100px;
    top: 700px !important;
  }

  .para2 {
    top: 1000px !important;
    left: 0;
  }

  .para3 {
    left: 70px;
  }

  .para5 {
    top: 1850px !important;
    left: 50px;
  }

  .logo{
    padding: .2em;
    max-width: 150px;
  }

  .slick-prev, .slick-next {
    visibility: hidden;
  }

  .menu-hero{
    height: 110vw;
  }
  .about-hero{
    height: 110vw;
  }
  .hero-heading{
    top: 20%;
    padding: 0 1em;
  }
  .wine-intro{
    top: 20%;
    padding:0;
  }
  #wine-menu{
    width: 80%;
  }
  #menu{
    width:80%;
  }

  .intro-txt{
    padding: 0 1em;
  }
  .about-intro-txt{
    padding: 3em 1em;
    width:auto;
  }
  .map-container{
    height:auto;
  }
  .gallery-hero{
    height: 110vw;
  }
  .contact-hero{
    height: 110vw;
  }
  .contract-intro .intro-txt {
    padding: 3em 1em 2em;
  }
  form {
    max-width: 350px;
  }
  .slick-slide img {
    height: 110vw;
  }
  .gal-modal{
    display: none;
  }
  .specials{
    margin:0;
    padding-bottom: 3em;
  }

  .menu-gal {
    grid-template-columns: 1fr;
  }

  .gal-txt {
    padding: 0 2em;
  }
  .menu-item img{
    text-align: center;
    display: block;
    padding: 3em;
    margin: 0;
    width: 100%;
  }

  .menu-txt {
    padding:0 2em;
  }

  .menu-intro .intro-txt {
    max-width:90%;
  }
}


/** Cards section homepage **/

section.cards {
  background-color: #D2DBDD;
  display: grid;
  padding: 5em 3em;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap:2em;
}

.card-intro{
  grid-column: 1 / span 4;
  text-align: center;
  font-size: 1.3em;
}

.card--1 .card__img, .card--1 .card__img--hover {
    background-image: url('../images/on-site-grilling-thb.jpg');
}

.card--2 .card__img, .card--2 .card__img--hover {
    background-image: url('../images/entertainment-thb.jpg');
}

.card--3 .card__img, .card--3 .card__img--hover {
  background-image: url('../images/wedding-thb.jpg');
}

.card--4 .card__img, .card--4 .card__img--hover {
  background-image: url('../images/emergency-thb.jpg');
}

.card__like {
    width: 18px;
}

.card__clock {
    width: 15px;
  vertical-align: middle;
    fill: #AD7D52;
}
.card__time {
    font-size: 12px;
    color: #AD7D52;
    vertical-align: middle;
    margin-left: 5px;
}

.card__clock-info {
    float: right;
}

.card__img {
  visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
  border-top-left-radius: 12px;
border-top-right-radius: 12px;
  
}

.card__info-hover {
    position: absolute;
    padding: 16px;
  width: 100%;
  opacity: 0;
  top: 0;
}

.card__img--hover {
  transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  position: absolute;
    height: 235px;
  border-top-left-radius: 12px;
border-top-right-radius: 12px;
top: 0;
  
}
.card {
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #fff;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
}

.card:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    transform: scale(1.10, 1.10);
}

.card__info {
z-index: 2;
  background-color: #fff;
  border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
   padding: 16px 24px 24px 24px;
}

.card__category {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
  color: #868686;
}

.card__title {
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9em;
}

.card__by {
    font-size: 1.1em;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.card__author {
    font-weight: 600;
    text-decoration: none;
    color: #AD7D52;
}

.card:hover .card__img--hover {
    height: 100%;
    opacity: 0.3;
}

.card:hover .card__info {
    background-color: transparent;
    position: relative;
}

.card:hover .card__info-hover {
    opacity: 1;
}
ul {
  padding-left: 1.5em;
}

/** Media Queries **/

@media (max-width:499px){
  section.reserve-cta:before {
    background-attachment: scroll; /* Ensures compatibility with mobile browsers */
    background-size: cover; /* Adjusts the background to cover the available space */
    /* Additional mobile-specific adjustments can be added here */
}

.about-hero::before, .grill-hero::before, .venues-hero::before, .gallery-hero::before, .contact-hero::before, .entertainment-hero::before, .catering-hero::before, .emergency-hero::before {
  background-attachment: scroll;
}

	footer {
		grid-template-columns: 1fr;
		height: auto;
		text-align: center;
    padding-bottom: 3em;
	}
	.footer-contact-lnk {
      text-align: center;
	}
	a.footer-lnk {
    text-align: center;
  }
  .footer{
	padding: 1em;
  }
  .intro{
    grid-template-columns: 1fr;
    padding-bottom: 5em;
	}
  .hero{
    height: 100vw;
    }
  a.action-btn.hero-cta {
      margin: 1em;
      min-width: 130px;
      z-index: 8;
    }
  h1 {
      margin-top: 0.5em;
    }
  .subtitle {
    margin: 0 auto 1em;
    font-size: 1.3em;
    }
    section.cards {
      display: block;
      padding: 5em 2em;
    }
    article.card {
      margin: 1em 0;
  }
  img.fire-icon {
    margin-right: 0.5em;
  }
  .intro-img img {
    max-width: 100%;
    height:auto;
    width: 100%;
  }
  .menu-home-img img {
    max-width: 100%;
  }
  a.action-btn-blk {
    padding: 0.3em 5em;
  }
  .cta-btn {
    text-align: center;
  }
  .menu-home {
    grid-template-columns: 1fr;
  }
  header {
    max-height: 70vh;
    overflow: hidden;
  }
  p.copyright {
    padding: 0;
    margin: 0 1em;
  }
  .intro-txt.intro-home {
    order: 2;
  }
  h2.fire {
    margin-top: 0.4em;
  }
  .inline {
    display: inline-grid;
    grid-template-columns: 1fr 5fr;
    margin-top: 1em;
  }

  .menu-txt .inline{
    grid-template-columns: 1fr;
  }

  .menu-txt .inline img.fire-icon {
    padding:0;
  }

  .menu-gal-img {
    order: 2;
  }
  .menu-gal-img img {
    max-width: 100%;
  }
  section.entertainment-cta, section.emergency-cta {
    padding: 6em 1em;
  }
  .padding {
    padding: 3em;
  }
  .intro-img img {
    max-width: 100%;
  }
  .hide-mobile {
    display: none;
  }
  
  img.fire-icon {
    margin-left: unset;
  }
  span.inline {
    padding-left: 0;
    display: inline;
  }
  section.entertainment-cta, section.emergency-cta {
    min-height: unset;
  }
  .about-hero-2 {
    min-height: 90vw;
  }
  .wine-intro {
    padding: 1em;
  }
  .cta-btn {
    margin: 0;
  }
 
}

@media (min-width:500px) and (max-width:1024px){
  section.cards {
    grid-template-columns: 1fr 1fr;
  }
  .card-intro {
    grid-column: 1 / span 2;
  }
  .intro-txt {
    padding: 3em;
  }
  .intro-img img {
    float: unset;
  }
  .specials {
    margin: 3em;
  }
  .gal-txt h2 {
    padding-top: 0.5em;
  }
  h2.fire {
    margin-top: 1em;
  }
  .about-intro-txt {
    padding: 5em 3em;
  }
  .menu-gal {
    display: block;
    padding: 0 0 5em;
  }
  section.entertainment-cta, section.emergency-cta {
    overflow: hidden;
  }
  .menu-gal-img img {
    width: 100%;
  }
  .menu-home-img img {
    max-height: 100%;
  }
  .menu-home-img {
    max-width: 100%;
  }
  .padding {
    padding: 5em;
  }
  .inline div, .inline h2 {
    display: inline;
  }
  .wine-intro {
    padding: 0;
  }
}