@font-face {
    font-family: 'uniLight';
    src: local('UniversLTStd-LightCn'), url("fonts/UniversLTStd-LightCn.otf") format('opentype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'uniRoman';
    src: local('UniversLTStd'), url("fonts/UniversLTStd.otf") format('opentype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'uniRomanCn';
    src: local('UniversLTStd-Cn'), url("fonts/UniversLTStd-Cn.otf") format('opentype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'uniBold';
    src: local('UniversLTStd-Bold'), url("fonts/UniversLTStd-Bold.otf") format('opentype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'uniBoldCn';
    src: local('UniversLTStd-BoldCn'), url("fonts/UniversLTStd-BoldCn.otf") format('opentype');
    font-display: swap;
  }
  
/*  */

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

/*  */

:root{
    --blue: #6666ff;
    --backGround: #1e1e1e;
    --text: #ffff;
    --header: #333399;
}

/*  */

body {
    background-repeat: repeat;
    color: var(--text);
    background-attachment: scroll;
  }
  
  @media screen and (max-width: 820px) {
    body {
      background-image: url("./images/checkerboard-60x60.webp");
      background-size: auto;
    }
  }
  
  @media screen and (min-width: 821px) {
    body {
      background-image: url("./images/checkerboard-30x30.webp");
      background-size: auto;
    }
  }
  

h1{
    font-family: uniLight;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    font-weight: lighter;
}

h2{
    font-family: uniRoman;
    font-size: 1.2rem;
}

h3{
    font-size: 1rem;
    font-family: uniBoldCn;
    text-align: center;
    letter-spacing: .2rem;
}

h4{
    font-family: uniBold;
    font-size: 3rem;
    color: var(--blue);
    border: blue dotted 2px;
}

.menu a, .hamburgerMenu a{
    font-size: 1rem;
    font-family: uniBoldCn;
    text-align: center;
    letter-spacing: .2rem;
    text-decoration: none;
    color: var(--text);
}

a{
    color: var(--blue);
    text-decoration: underline;
}

ul{
    list-style: none;
}

p{
    font-family: uniRoman;
}

/*  */

#container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2vw;
    /* border: 2px dotted red; */
}

#wrapper{
    width: 1000px;
    /* background-color: red; */
    /* border: 2px dotted red; */
}

/*  */

.logo{
    display: block;
    margin: auto;
    width: 50%;
    margin-bottom: 3vh;
}

.logoHero{
    display: none;
}
/*  */

.mobileHead{
    display: none;
}

.mainHead{
    font-family: uniBoldCn;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: .2rem;
    line-height: 2rem;
    margin-bottom: 3vh;
}

.mainAdress{
    margin-bottom: 3vh;
    font-size: 90%;
}

/*  */

.displayImage {
    position: relative;
    display: flex;
    width: 100%;
    height: 528px;
    overflow: hidden;
    background-image: url("images/slideImages/LocalsFavorite.webp");
    background-size: contain;
    background-repeat: no-repeat;
    /* border: #b1a74e dotted 2px; */
}

.displayImage img {
    position: absolute;
    width: 100%;
    opacity: 0;
    left: 100%;
    height: fit-content;
}


/*  */

.menu{
    background-color: var(--header);
    color: var(--text);
    font-family: uniRoman;
}

.menu ul{
    display: flex;
    justify-content: space-around;
    padding: 10px 0 10px 0;
    text-align: center;
    margin-bottom: 2vh;
}

/*  */

.subHead{
    color: #b14e4f;
    margin: 2vh 0 1.8vh 0;
    font-size: 2rem;
    font-family: uniLight;
    }

/*  */

.gridContent{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    background-color: var(--backGround);
    width: 100%;
}

.gridContainer{
    padding: 10px;
    height: 96%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-family: uniRoman;
}

.gridContainer > *{
    margin-bottom: 10px;
}

.center .gridContainer{
    align-items: center;
}

.gridHead{
    width: 100%;
    background-color: var(--header);  
    padding: 10px;
}

/*  */

.map{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;    
    width: 100%;
    aspect-ratio: 1;
    background-image: url("images/map-image.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.map a{
    width: 70%;
}

/*  */

.center{
    text-align: center;
}

.center h1{
    color: var(--blue);
}

/*  */

.btnLink{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    width: 100%;
    margin: auto;
    height: 60px;
    font-family: uniRoman;
    color: var(--blue);
    text-decoration: underline;
    font-size: 1.2rem;
    padding: 20px;
    letter-spacing: 0;
}

/*  */

.center{
    align-content: flex-start;
    margin: 0;
}

.center img{
    margin: -2.5rem 0 -160px 0;
}

.v8Head{
    font-family: uniBold;
    font-size: 3rem;
    color: var(--blue);
    /* border: blue dotted 2px; */
    margin-top: 4rem;
    margin-bottom: -120px;
}

.v8Info{
    font-family: uniRoman;
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: -7rem;
}

.v8HourHead{
    font-size: 1rem;
    font-family: uniBoldCn;
    text-align: center;
    letter-spacing: .2rem;
    width: 100%;
    background-color: var(--header);  
    padding: 10px;
    margin-bottom: -9rem;
}


.right{
    text-align: center;
}

/*  */

.happyHour{
    text-align: center;
    font-family: uniBold;
    font-size: 3rem;
    color: var(--blue);
    
}

.happyHourText {
    font-size: 1.2rem;
    color: var(--text);
    text-align: center;
    font-family: uniBold;
}


/*  */

.drinkMenu{
    display: grid;
    grid-template-columns: 1fr;
   text-align: center;
   width: 60%;
   margin: 0 auto;
   padding-bottom: 2vh;
}

.pride{
    width: min(15vw, 180px);
    display: block;
    position: relative;
    top: -110px;
}

.bestof{
    font-family: uniRoman;
    font-size: 1.2rem;
    margin: -10vh auto;
    display: inline;
}


/*  */

.deals{
    width: 100%;
}

.dealParent{
    display: grid;
    grid-template-columns: 1fr 3fr;
    text-align: left;   
    margin-bottom: 5px;
}

.dealHead{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: uniBoldCn;
    padding: 5px;
    background-color: #000000;
}

.dealContent{
    display: flex;
    align-items: center;
    font-family: uniRomanCn;
    background-color: var(--header);
    padding-left: 10px;
}

/*  */

.social {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social a {
    width: 40%; /* Adjust the width as desired */
    border-radius: 30%;
    border-width: 5px;
    margin: 1vh -20px;
    display: inline-block;
    text-align: center;
  }
  
  .social img {
    width: 40%;
    height: auto;
  }
  
/*  */

.backTop{
    display: none;
    width: 40%;
}

/*  */

.hamburger,
.hamburgerMenu{
    display: none;
}

/*  */

footer{
    font-size: 1rem;
    text-align: center;
    color: #636363; 
    height: 70px;
    margin-top: 30px;
}

.footerText a {
    font-family: uniRoman;
    color: var(--blue);
    text-decoration: underline;
    font-size: 1.2rem;
    padding: 20px;
    letter-spacing: 0;
  }
  

/* RESPONSIVE BREAKPOINTS */

@media screen and (min-width: 1400px) {
    #wrapper{
        width: 1200px;
    }

    .displayImage{
        width: 100%;
        aspect-ratio: 2.27;
    }

    .displayImage img{
        width: 100%;
        object-fit: contain;
    }

    .subHead{
        margin-top: 2vh;
        font-size: 3rem;
        /* border: #b14e4f dotted 1px; */
    }
}

@media screen and (max-width: 1399px) {
    .displayImage{
        height: 440px;
        background-repeat: no-repeat;
        object-fit: scale-down;
        margin-bottom: 2vh;
        /* border: rgb(37, 216, 216) dotted 2px; */
    }

    .subHead{
        font-size: 2.5rem;
    }
}

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

    #wrapper{
        width: 90vw;
    }

    .center,
    .left,
    .right{
        width: 100%;
    }

    .displayImage{
        height: 430px;
        background-repeat: no-repeat;
        object-fit: scale-down;
        /* border: rgb(37, 216, 37) dotted 2px; */
    }

    .subhead{
        font-size: 2rem;
        margin-top: -3rem;
        /* border: #b14e4f dotted 1px; */
    }
}   

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

 /*    body{
        background-image: url("./images/mobileCheck.jpg");
        background-size: cover;
        color: var(--text);
    }
 */
    #wrapper{
        background-color: var(--backGround);
    }

    .deskHead{
        display: none;
    }

    .pride{
        display: none;
    }

    .mobileHead{
        display: block;
    }
    
    .Head{
        display: none;
    }

    .backTop{
        display: block;
        margin: 40px auto 40px;
    }

    .logoMain{
        display: none;
    }

    .logoHero{
        display: block;
    }

    .hamburger{
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
        background-image: url("images/menuIcon.svg");
        background-size: cover;
        z-index: 2;
    }

    .hamburgerCross{
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
        background-image: url("images/menuCros.svg");
        background-size: cover;
        z-index: 5;
    }

    .hamburgerMenu{
        position: fixed;
        display: flex;
        justify-content: center;
        top: 0px;
        left: -100vw;
        background-color: var(--header);
        z-index: 3;
        width: 200px;
        height: 575px;
        text-align: center;
    }

    .hamburgerMenu ul{
        width: 95%;
        margin-top: 50px;
    }

    .hamburgerMenu ul a{
        font-family: uniRoman;
        font-size: 1rem;
    }

    .hamburgerMenu li{
        border-bottom: 1px solid var(--blue);
        margin-bottom: 25px;
        padding-bottom: 22px;
    }

    .displayImage{
        display: none;
    }

    .logo{
        width: 100%;
    }

    .menu{
        display: none;
    }

    .findUs{
        display: none;
    }

    .mainHead{
        font-size: 1.4rem;
        letter-spacing: 0;
        margin-bottom: 3vh;
    }

    .mainAdress{
        font-size: 1.25rem;
    }

    .dealContent{
        font-family: uniRoman;
        font-weight: lighter;
    }

    .dealParent{
        grid-template-columns: 1fr 4fr;
    }

    .gridContent{
        display: block;
    }

    .footer{
        height: 50vh;
    }

    .subHead{
        font-size: 2rem;
    }

    .v8Head{
        /* border: pink dotted 2px; */
        margin-top: 20vh;
        margin-bottom: -2vh;
        font-size: 3.6rem;
    }
    
    .v8Info{
        font-family: uniRoman;
        font-size: 1rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .v8HourHead{
        font-size: 1rem;
        font-family: uniBoldCn;
        text-align: center;
        letter-spacing: .2rem;
        width: 100%;
        background-color: var(--header);  
        padding: 10px;
        margin-bottom: 2rem;
    }
    
    .v8pic{
        /* border: rgb(87, 90, 235) dotted 2px; */
        position: relative;
        margin: 5vh 0 0 0 ;
        padding-top: 50px;
    }

}


   