@font-face {
    font-family: 'gnuolane_rg';
    src: url('fonts/quark-light-webfont.eot');
    src: url('fonts/quark-light-webfont.woff') format('woff'), url('fonts/quark-light-webfont.ttf') format('truetype'), url('fonts/quark-light-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MinionProMedium';
    src: url('fonts/minionpro-medium.eot');
    src: url('fonts/minionpro-medium.woff') format('woff'), url('fonts/minionpro-medium.ttf') format('truetype'), url('fonts/minionpro-medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
    --red: #B32018;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'gnuolane_rg',
    sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

select,
button,
input,
textarea {
    outline: none;
    border: none;
    font-family: 'gnuolane_rg', sans-serif;
    appearance: none;
    border-radius: 0;
    margin: 0;
}

/******
General
 */

.button {
    display: block;
    width: 100%;
    padding: 10px 0 7px;
    cursor: pointer;
    font-size: 18px;
    max-width: 200px;
    margin: 0 auto 15px;
    background-color: var(--red);
    color: white;
    border-radius: 5px;
    text-align: center;
}

.button.mt-20 {
    margin-top: 20px;
}

@media (max-width: 675px) {
    .desktopOnly {
        display: none !important;
    }
}


@media (min-width: 675px) {
    .mobileOnly {
        display: none !important;
    }
}

/*slide show*/

#slideshow {
    height: 100%;
    width: 100%;
}

#slideshow > div {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    transition: 2s;
    position: absolute;
    top: 0;
    left: 0;
}

#slideshow > div.active {
    visibility: visible;
    opacity: 1;
}


/*Side bar through nav*/

#sideBar {
    background-color: rgba(255, 255, 255, 0.99);
    height: 100%;
    width: 230px;
    position: fixed;
    top: 0;
    left: -100%;
    text-align: center;
    padding: 30px 20px;
    overflow-y: auto;
    transition: 0.5s;
}

#sideBar.open {
    left: 0;
}

#sideBar.open ~ #moveSideBar {
    left: 230px;
}

#sideBar.open ~ #moveSideBar > svg {
    transition: 0.3s;
    transform: rotate(180deg);
}

#sideBarLogo {
    margin-bottom: 20px;
    width: 90%;
}

#sideBarTitle {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--red);
    width: 100%;
    font-size: 30px;
}

#sideBarNav {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    margin-bottom: 20px;
}

#sideBarNav > a {
    width: 100%;
    padding: 4px;
    position: relative;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#sideBarNav > a:hover,
#sideBarNav > a.active {
    font-weight: bold;
}

#sideBarNav > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--red);
    transform: scaleX(0);
    transition: 0.3s;
}

#sideBarNav > a:hover:before {
    transform: scaleX(1);
}

#sideBarInfo {
    margin-bottom: 10px;
}

#sideBarCaviar {
    font-family: SQMarket-medium, "Helvetica Neue", sans-serif;
    font-size: 16px;
    background-color: var(--red);
    color: white;
    padding: 10px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
}


/*move nav*/
#moveSideBar {
    position: fixed;
    top: 35px;
    left: 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.99);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--red);
    cursor: pointer;
    transition: 0.5s;
}

/*top book table*/
#bookTable {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--red);
    border-left: 1px solid var(--red);
    border-right: 1px solid var(--red);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: rgba(255, 255, 255, 0.99);
    position: fixed;
    top: 0;
    right: 50px;
}

#bookTable span {
    margin-top: -15px;
    font-weight: bold;
    color: var(--red);
}

/*top caviar */
#caviar {
    font-family: SQMarket-medium, "Helvetica Neue", sans-serif;
    font-size: 16px;
    background-color: var(--red);
    color: white;
    position: fixed;
    top: 0;
    right: 300px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: bold;
}

/*main content*/
.page {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.99);
    left: 230px;
    top: 0;
    border-left: 1px solid #ffffff;
    width: calc(100% - 230px);
    max-width: 500px;
    height: 0;
    overflow-y: hidden;
    z-index: 1;
}

.page.active {
    height: 100%;
    overflow-y: auto;
    transition: 0.5s linear;
}

@media (max-width: 675px) {
    .page {
        left: 0;
        width: 100%;
        max-width: none;
        border-left: 0;
    }
}

.pageButtons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0;
}

.pageBack {
    cursor: pointer;
}

.pageExit {
    cursor: pointer;
    margin-left: auto;
}

.pageTitle {
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    text-transform: lowercase;
    text-decoration: underline;
    margin-bottom: 30px;
    font-family: 'MinionProMedium', sans-serif;
    padding: 0 20px;
}

.pageDescription {
    padding: 0 20px;
}

.pageDescription * {
    font-family: 'gnuolane_rg', sans-serif !important;
}

.pageDescription h3 {
    color: var(--red);
}

.pageDescription h6 {
    color: var(--red);
    font-size: 16px;
    margin: 1em 0;
}

.pageDescription hr {
    border: none;
    height: 1px;
    background-color: var(--red);
    padding: 0 20px;
}

.pageDescription a:not(.button) {
    text-decoration: underline;
}


/*special*/
#reservations .pageDescription {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    text-align: center;
}

/* accoaltes */
#accoladeImages {
    display: flex;
    flex-direction: column;
}

#accoladeImages a {
    margin-bottom: 10px;
    text-align: center;
}

#accoladeImages img {
    width: 100%;
    max-width: 200px;
}

/*form*/
.form {
    display: flex;
    flex-direction: column;
}

.form input {
    padding: 10px;
    margin-bottom: 10px;
    transition: 0.3s;
    border: 1px solid black;
    border-radius: 2px;
    font-size: 16px;
}

.form input:focus,
.form input:hover {
    border: 1px solid var(--red);
}