body{
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    position: relative;
}
nav{
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 20;
    color: white;
    text-align: center;
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
    .home{
        float: left;
        padding: 5vh 3vw;
        img{
            width: 20px;
        }
    }
    .menu{
        float: right;
        padding: 5vh 3vw;
        img{
            width: 20px;
        }
    }
    .center{
        display: inline-block;
        vertical-align: middle;
    }
    .center a{
        display: inline-block;
        vertical-align: middle;
        padding: 4vh 2vw;
        color: white;
        font-weight: bold;
        letter-spacing: 3px;
        text-decoration: none;
        font-size: 1.5em;
    }
    .center a span{
        padding-bottom: 10px;
        border-bottom: 2px solid white;
    }
    .logo{
        width: 20px;
        padding: 3vh 2vw;
        border: none !important;
    }
}
.hero{
    height: 100vh;
    padding: 0px;
    background-color: black;
    position: relative;
    overflow: hidden;
    .book{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        width: 110%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: .8;
        transition: all ease .5s, transform ease 0s, filter ease 0s;
        pointer-events: none;
    }
    .shop{
        position: absolute;
        left: 50%;
        bottom: -5vh;
        width: 110%;
        transform: translateX(-50%);
        z-index: 2;
        transition: all ease .5s, transform ease 0s, filter ease 0s;
        pointer-events: none;
    }
    .herocenter{
        position: absolute;
        z-index: 3;
        left: 50%;
        bottom: 50%;
        transform: translateX(-50%);
        width: 80%;
        font-size: 1.2em;
        max-width: 400px;
        text-align: center;
        h1{
            margin: 0px;
        }
        h2{
            margin: 10px 0;
        }
        
    }
   
}
.hero.book .book{
    left: 53% !important;
    filter: blur(0)r;
}
.hero.shop .shop{
    left: 50% !important;
    filter: blur(0);
}
.hero.book .shop{
    left: 55% !important;
}
.hero.shop .book{
    left: 50% !important;
}
.sticky{
    padding-top: 20px;
    position: absolute;
    display: inline-block;
    top: 50vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    white-space: nowrap;
}
.sticky.stuck{
    top: 0;
    position: fixed;
}
.logo{
    margin: 0px 40px;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    line-height: 50px;
   z-index: 30;
}
section{
    padding: 5vh 5vw;
    background-color: black;
    color: white;
    box-sizing: border-box;
    h1{
        font-size: 4.8em; 
        letter-spacing: 3px;
        font-weight: 900;
        margin: 20px 0;
    }
    h2{
        font-size: 2.4em; 
        font-weight: 300;
        letter-spacing: 5px;
        margin: 0 0 10px 0;
    }
    h3{
       font-size: 1.6em; 
       letter-spacing: 3px;
    }p{
        font-size: 2em;
        font-weight: 300;
        line-height: 1.6em;
        width: 75%;
    }
}
a.c2a{
    font-size: 1.4em; 
    letter-spacing: 3px;
    text-decoration: none;
    color: white;
    font-weight: bolder;
    padding: 1em 0;
    box-sizing: border-box;
    border-bottom: 2px solid white;
    margin-bottom: 2px;
    display: inline-block;
}
a.c2a:hover{
    border-bottom: 4px double white;
    margin-bottom: 0px;
}
@media(max-width: 500px){
    .hero .shop{
        width: 300%;
        left: 0%;
        transform: translateX(-50%);
        z-index: 2;
        transition: all ease .5s !important;
    }
    .hero .book{
        opacity: .6;
        object-position: 25% center;
        transition: all ease .5s !important;
    }
    .hero .herocenter{
    }
    nav .center a{
        padding: 2vh 3vw;
    }nav .home, nav .menu{
        padding: 5vh 5vw;
    } 
    nav .center a{
        font-size: 1.3em;
    }
    
    section.booking{
        background-position: bottom center !important;
        padding: 10vw;
        padding-bottom: 15vh;
        
    }
    section.booking p{
        width: 100%;
    }
    section h1{
        font-size: 4em;
    }
    .hero.book .book{
        left: 55% !important;
        filter: blur(0);
        opacity: 0.9;
    }
    .hero.shop .shop{
        left: -5% !important;
        filter: blur(0);
    }
    .hero.book .shop{
        left: 5% !important;
        filter: blur(3px) !important;
    }
    .hero.shop .book{
        left: 45% !important;
        filter: blur(10px) !important;
    }
    .hero .herocenter{
        width: 100%;
    }

}