/* COLORS */
/* #f0c - pink */
/* #09f - light blue */
/* #ff0 - yellow */

/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    width: 100%;
}

ul {
    margin-top: 20px;
    text-align: left;
    list-style: circle;
}

li {
    margin-left: 25px;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

* {
    box-sizing: border-box;
}

ul {
    list-style: disc;
}

li {
    margin-left: 20px;
}

html, body {
    height: 100%;
}

strong {
    font-weight: 800;
}

.inline {
    vertical-align: top;
    display: inline-block;
}

.spacer {
    height: 40px;
}

.small {
    font-size: 12px;
}

.column, .left, .center, .right {
    display: inline-block;
    vertical-align: top;
}

.column {
    min-width: 330px;
}

.row {
    margin: 20px;
    border-bottom: 1px dotted #fff;
}

.row.header {
    margin: 20px;
    border-bottom: 2px solid #09f;
    font-size: 24px;
}

.left {
    width: 33.3%;
    text-align: left;
}

.center {
    width: 33.3%;
    text-align: center;
}

.right {
    width: 33.3%;
    text-align: right;
}

.ta-right {
    text-align: right;
}

.yellow_text {
    color: #ff0;
}

.blue_text {
    color: #09f;
}

/* SIDEBAR */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #09f, rgba(0,0,0,.8), transparent);
    z-index: 20000;
    box-shadow: 10px 5px 10px rgba(0,0,0,.3);
}

.sidebar .logo {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 200px;
}

.sidebar .logo img {
    height: 100%;
}

.sidebar .logo:hover {
    -webkit-animation: jiggle 0.2s infinite;
    -moz-animation-duration: 0.2s;
    -moz-animation-name: jiggle;
    -moz-animation-iteration-count: infinite;
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
}

.menu_image {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    z-index: 20001;
    cursor: pointer;
}

.menu_image img {
    width: 100%;
}

.menu {
    position: relative;
    margin: 240px 10px 0;
}

.menu a {
    display: block;
    color: #fff;
}

.body a {
    display: inline-block;
    color: #fff;
}

.item {
    padding: 6px;
    margin: 10px 0;
    background-color: #f0c;
    border: 3px solid #000;
    font-size: 20px;
    font-weight: 800;
    transition: transform .3s, background-color .3s, border .3s;
    width: 267px;
}

a.item1,
a.item3,
a.item5,
a.item7,
a.item9 {
    text-align: left;
    transform: perspective(400px) rotateY(30deg);
}

a.item2,
a.item4,
a.item6,
a.item8,
a.item10 {
    text-align: right;
    transform: perspective(400px) rotateY(-30deg);
}

a.item:hover {
    background-color: #000;
    border: 3px solid #ff0;
    transform: rotateY(0deg);
}

@-moz-keyframes jiggle {
    0% {
        -moz-transform: rotate(-1deg);
    }
    50% {
        -moz-transform: rotate(1deg);
    }
}

@-webkit-keyframes jiggle {
    0% {
        -webkit-transform: rotate(-1deg);
        }
    50% {
        -webkit-transform: rotate(1deg);
    }
}

/* BANNER */

.fs_bg {
    position: relative;
    overflow: hidden;
    z-index: 100;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    height: 100%;
}

.fs_bg.home {
    background-image: url('/images/banner.jpg');
}

.fs_bg.gokarts {
    background-image: url('/images/gokarts_bg.jpg');
}

.fs_bg.slickkarts {
    background-image: url('/images/slickkarts.jpg');
}

.fs_bg.shark {
    background-image: url('/images/shark2.jpg');
}

.fs_bg.slide {
    background-image: url('/images/slide1.jpeg');
}

.fs_bg.bumpercars {
    background-image: url('/images/bumpercars2.jpg');
}

.fs_bg.playlive {
    background-image: url('/images/playlive2.jpg');
}

.fs_bg.virtualreality {
    background-image: url('/images/vr4.png');
}

.fs_bg.rollercoaster {
    background-image: url('/images/rollercoaster.jpg?412111');
}

.fs_bg.peppermintparlor {
    background-image: url('/images/pp_outside.jpg');
}

.fs_bg.concierge {
    background-image: url('/images/concierge3.jpg');
}

.fs_bg_vid {
    position: relative;
    width: 100%;
    min-height: 600px;
}

/* BODY */

.spacer {
    height: 40px;
}

.body {
    position: relative;
    padding-top: 50px;
    padding-left: 287px;
    text-align: center;
}

.body .left_area {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 287px;
    background-color: #09f;
}

.body h1 {
    font-size: 35px;
    margin: 0 auto;
    width: 250px;
    text-align: center;
}

.blue {
    color: #fff;
    background-color: #09f;
}

.yellow {
    color: #000;
    background-color: #ff0;
}

.pink {
    color: #fff;
    background-color: #f0c;
}

.dark_blue {
    color: #fff;
    background-color: #2500c7;
}

.black {
    color: #fff;
    background-color: #000;
}

.lean_left {
    z-index: 10;
    transform: skewX(10deg);
    box-shadow: 10px 5px 10px rgba(0,0,0,.5);
}

.lean_right {
    z-index: 10;
    transform: skewX(-10deg);
    box-shadow: 10px 5px 10px rgba(0,0,0,.5);
}

.body h3 {
    font-size: 24px;
    color: #f0c;
    transform: skewX(10deg);
    text-align: center;
}

.body .container {
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.body .container .inline.section {
    text-align: left;
    margin: 10px 20px;
    text-align: center;
}

.body .container h2 {
    font-size: 30px;
    color: #ff0;
    transform: skewX(10deg);
    margin-bottom: 10px;
    text-align: center;
}

.body .container .inline .hours {
    margin: 10px 0;
    text-align: left;
    font-size: 20px;
}

.body .container .inline .hours .inline {
    width: 180px;
}

.image_divider {
    overflow: hidden;
    position: relative;
    will-change: transform;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 50;
    text-align: center;
    padding: 20px;
}

.image_divider .id_left {
    max-height: 440px;
}

.image_divider .id_center {
    width: 100%;
    max-width: 440px;
}

.image_divider .id_right {
    max-height: 440px;
}

.image_divider .title {
    font-size: 40px;
    margin: 200px auto;
    width: 300px;
}

/* GO KARTS */

.explore {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: #444;
    overflow: hidden;
    height: 300px;
    min-width: 300px;
    transition: all 0.3s ease;
    box-shadow: 10px 5px 10px rgba(0,0,0,.5);
    margin: 20px 0;
}

.third {
    width: 33.3%;
    min-width: 350px;
}

.half {
    width: 50%;
    min-width: 350px;
}

.whole {
    width: 100%;
}

.explore.right {
    transform: perspective(300px) rotateY(20deg) translateX(40px);
}

.explore.left {
    transform: perspective(300px) rotateY(-20deg) translateX(-80px);
}

.explore .image {
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    transition: all 0.3s ease;
}

.explore .title {
    position: absolute;
    font-size: 25px;
    color: #09f;
    text-shadow: 1px 1px #000000;
    background-color: #fff;
    padding: 10px;
    top: 0;
}

.explore.right .title {
    left: 0;
}

.explore.left .title {
    right: 0;
}

.explore .price {
    position: absolute;
    font-size: 25px;
    color: #fff;
    background-color: #000;
    padding: 10px;
}

.explore.right .price {
    bottom: 0;
    left: 0;
}

.explore.left .price {
    bottom: 0;
    right: 0;
}

.explore:hover {
    transform: none;
}

.gk1 {
    background-image: url(/images/gk1.jpg);
}

.gk2 {
    background-image: url(/images/gk2.jpg);
}

.gk3 {
    background-image: url(/images/gk3.jpg);
}

.st1 {
    background-image: url(/images/st1.jpg);
}

.st2 {
    background-image: url(/images/st2.jpg);
}

.sh1 {
    background-image: url(/images/shark_ride1.jpg);
}

.sh2 {
    background-image: url(/images/shark_ride2.png);
}

.sl1 {
    background-image: url(/images/slide2.jpeg);
}

.sl2 {
    background-image: url(/images/slide3.jpeg);
}

.rc1 {
    background-image: url(/images/coaster1.jpg?313);
}

.bc1 {
    background-image: url(/images/bc_single.png);
}

.bc2 {
    background-image: url(/images/bc_double.png);
}

/* FOOTER */

#footer {
    padding: 30px 5% 30px 292px;
    background-color: #000;
    color: #ff0;
    text-align: left;
    font-size: 14px;
}

#footer .inline {
    width: 25%;
}

#footer .inline .inline {
    width: 50%;
}

#footer .address {
    color: #ff0;
    cursor: pointer;
}

#footer .logo, #footer .address, #footer .phone, #footer .email {
    margin: 20px 0;
}

#footer a {
    color: #ff0;
}

#footer a:hover, #footer .address:hover {
    color: #ff0;
}

#footer a.f_menu_item {
    display: block;
    margin: 20px 0;
}

#footer .copyright {
    color: #aaa;
    font-size: 12px;
}

#footer .logo {
    width: 80%;
}

#footer .logo img {
    width: 100%;
}

@media (max-width: 1140px) {
    .sidebar {
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        height: 60px;
        overflow-y: auto;
        overflow: visible;
        position: absolute;
    }

    .sidebar .logo {
        position: absolute;
        top: 10px;
        left: 10px;
        height: 100px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 120px;
        right: 0;
        left: 0;
        text-align: center;
        margin: 0;
        width: auto;
        background-color: #000;
        z-index: 200001;
        overflow: hidden;
    }

    .menu .item {
        padding: 0;
        margin: 10px auto;
        padding: 10px;
        font-size: 14px;
        width: 80%;
        max-width: 370px;
    }

    .menu a {
        display: block;
    }

    .menu_image {
        display: block;
    }

    .left_area {
        display: none;
    }

    .body {
        padding-left: 0;
    }

    #footer {
        padding-left: 5%;
    }
}

@media (max-width: 906px) {
    #footer {
        text-align: center;
    }

    #footer .inline {
        width: 50%;
    }
}

@media (max-width: 850px) {
    .id_right {
        display: none;
    }
}

@media (max-width: 800px) {
    .fs_bg.home {
        background-image: url('/images/gk_portrait.jpg');
    }

    .body .container .inline .hours .inline {
        width: 140px;
        font-size: 16px;
    }

    .explore {
        transform: none;
    }

    .image_divider {
        background-attachment: scroll;
    }
}

@media (max-width: 655px) {
    .id_left {
        display: none;
    }
}

@media (max-height: 655px) {
    .sidebar {
        position: absolute;
    }
    .left_area {
        display: none;
    }
    .body {
        padding-left: 0;
    }
}
