/*-----------------------------------------------------------------------------

    version:   1.0
    date:      19/04/24

    -----------------------------------------------------------------------------*/


@import url("satoshi.css");

@font-face {
    font-family: 'BCVajgar-Regular';
    src: url('../fonts/BCVajgar-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

/* Remove padding and margin */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}
body {
    font: 100%/1.5 "Satoshi-Bold", sans-serif;
    color: #000000;
    text-align: center;
    min-height: 100vh;
}
main {
    min-height: 100vh;
    padding: 0;
    background: url(/assets/media/bg.webp) no-repeat;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
#content {
    max-width: 904px;
    width: 90%;
    height: auto;
    margin: 40px 0;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 50px;
    box-sizing: border-box;
    padding: 50px 0px;
}
.row {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
}
#logo {
    height: 87px;
    width: auto;
    margin-bottom: 30px;
}
h1 {
    font-size: 3.4em;
    max-width: 570px;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1.2em;
    font-family: 'BCVajgar-Regular', sans-serif;
    color: #272e14;
}
address {
    font-size: .85em;
    margin-bottom: 50px;
    font-family: 'Satoshi-Medium', sans-serif;
    font-style: normal;
}
address.mobile {
    display: none;
}
fieldset {
    border: 1px solid #BA8F3F;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
}
legend {
    padding: 0 15px;
    color: #BA8F3F;
    font-size: .85em;
}
fieldset p {
    font-size: 1.35em;
    width: 100%;
    padding: 8px 50px 10px 50px;
    box-sizing: border-box;
    display: inline-block;
}
fieldset p span.left {
    float: left;
}
fieldset p span.right {
    float: right;
}
fieldset p span img {
    height: 30px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
    top: -2px;
}
.openhours fieldset {
    width: 433px;
    margin-bottom: 30px;
}
.reservations fieldset {
    width: 623px;
    margin-bottom: 50px;
}

.btn {
    background-color: #272E14;
    padding: 12px 75px;
    color: #BA8F3F;
    text-decoration: none;
    font-size: 1.6em;
    display: inline-block;
    border-radius: 50px;
    font-family: 'BCVajgar-Regular', sans-serif;
}
.btn img {
    margin-left: 10px;
    height: 17px;
    width: auto;
    vertical-align: middle;
    position: relative;
    top: -3px;
}



@media only screen and (max-width: 787px) {
    #content {
        padding-bottom: 20px;
    }
    fieldset {
        border: none;
    }
    .openhours fieldset, .reservations fieldset {
        width: 100%;
    }
    fieldset p {
        font-size: 1.1em;
    }
    fieldset p span {
        width: 100%;
        margin-bottom: 10px;
    }
    h1 {
        margin-bottom: 50px;
        font-size: 3em;
        padding: 0 20px;
    }
    address.desktop {
        display: none;
    }
    address.mobile {
        display: inline-block;
        margin-bottom: 0;
        margin-top: 60px;
    }
}
@media only screen and (max-width: 460px) {
    #logo {
        width: 50%;
        height: auto;
    }
    h1 {
        font-size: 2.8em;
    }
}