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

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: transparent;
    color: #a6a6a6;
    font-style: normal;
    font-weight: normal;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #000;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

@font-face {
    font-family: "Poster Gothic ATF";
    src: url("subset-PosterGothicATF.woff2") format("woff2"),
        url("subset-PosterGothicATF.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poster Gothic ATF Bold";
    src: url("subset-PosterGothicATF-Bold.woff2") format("woff2"),
        url("subset-PosterGothicATF-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* START: Global tags */
html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    font-size: 1.05vw;
}

:root {
    --red: #440100;
    --white: #e6dcc3;
}

body {
    width: 100%;
    height: auto;
    background: var(--red);
    color: var(--white);
    font-family: "Poster Gothic ATF", serif;
    font-size: 32px;
    line-height: 1;
    font-style: normal;
    overflow-x: hidden;
}

* {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::selection {
    background: var(--black);
    color: var(--white);
}

::-moz-selection {
    background: var(--black);
    color: var(--white);
}

p:not(:last-child) {
    margin-bottom: 1em;
}

a,
a:hover,
a:link {
    text-decoration: none;
    transition: color 0.4s ease, background-color 0.4s ease, opacity 0.4s ease;
    -webkit-transition: color 0.4s ease, background-color 0.4s ease,
        opacity 0.4s ease;
    -moz-transition: color 0.4s ease, background-color 0.4s ease,
        opacity 0.4s ease;
    -o-transition: color 0.4s ease, background-color 0.4s ease,
        opacity 0.4s ease;
}

em {
}

strong {
}

input {
}

img {
    height: auto;
    display: block;
}

main {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 50px;
}

.logo {
    margin-bottom: 46px;
    width: auto;
    width: 900px;
    max-width: 50%;
}

.logo img {
    width: 100%;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
}

.button {
    font-family: "Poster Gothic ATF Bold", sans-serif;
    color: var(--red);
    background: var(--white);
    border-radius: 100%;
    padding: 14px 30px;
}

.mobile {
    display: none;
}

#booking {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 50px 50px;
    background: var(--red);
    color: var(--white);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    pointer-events: none;
    -webkit-transition: transform 0.6s ease;
    transition: transform 0.6s ease;
}

body.book #booking {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: visible;
}

#booking .column::-webkit-scrollba {
    display: none;
}

#booking .inner {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 50px;
}

#booking .column {
    width: 50%;
    height: 100%;
    overflow-y: scroll;
}

#booking .column:first-child p {
    font-size: 16px;
}

.close {
    position: absolute;
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--white);
    right: 50px;
    top: 60px;
    font-size: 24px;
    text-decoration: underline;
    font-family: "Poster Gothic ATF Bold", sans-serif;
    cursor: pointer;
}

.phone,
.phone a {
    color: var(--white) !important;
}

@media only screen and (max-width: 900px) {
    body {
        font-size: 24px;
    }

    #booking {
        padding: 60px 25px 25px;
    }

    #booking .inner::-webkit-scrollbar {
        display: none;
    }

    #booking .inner {
        flex-direction: column;
        overflow-y: scroll;
    }

    #booking .column {
        width: 100%;
        height: auto;
        overflow-y: visible;
    }

    #booking .column:last-child p {
        font-size: 14px;
    }

    .close {
        top: 20px;
        right: 25px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

@media only screen and (max-width: 740px) {
    .logo {
        width: 300px;
        max-width: 100%;
    }

    .buttons {
        margin-top: 35px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
