@import 'fonts.css';
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');

body {
    /*font-family: Work Sans, Georgia, 'Times New Roman', Times, serif;*/
    font-family: 'Work Sans', sans-serif;
}

/*************************************/
/** Buttons */
/*************************************/

button:focus,
button:active:focus,
button.active:focus,
button.focus,
button:active.focus,
button.active.focus {
    outline: none!important;
    box-shadow: none !important;
}

/*************************************/
/** Header */
/*************************************/

.header {
    background-color: #000;
}

.header-logo img {
    width: 200px;
    height: auto;
}

.social-links {
    order: 1;
}

.social-link {
    color: #fff;
    transition: color 180ms ease;
}

.social-link:first-of-type {
    margin-right: 10px;
}

.social-link:hover {
    color: #0eb2c7;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: Marck Script, Georgia, 'Times New Roman', Times, serif;
    color: #fff;
    font-size: 1.125rem;
    transition: color 180ms ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #0eb2c7;
}

.navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0 10px;
    padding-left: 15px;
}

.languages {
    margin: 25px 0 15px -6px;
}

.btn-language {
    background: transparent;
    border: 0;
    color: #fff;
    transition: all 180ms ease;
    text-decoration: none;
    margin-left: 10px;
}

.btn-language.active,
.btn-language:hover {
    color: #0eb2c7;
    text-decoration: none;
}

.btn-language.active {
    font-weight: 700;
}

.navbar-dark .navbar-toggler {
    border:none;
}

/*************************************/
/** Layout */
/*************************************/

.padding {
    padding-top: 20px;
    padding-bottom: 20px;
}

.full-heigth-container {
}

.full-heigth-content {
    padding: 8%;
}

.full-heigth-image {
    height: 240px;
    min-height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*************************************/
/** Text */
/*************************************/

.primary-title {
    margin-bottom: 1.875rem;
    font-size: 2rem;
    font-family: Marck Script, Georgia, 'Times New Roman', Times, serif;
    color: #0eb2c7;
}

.secondary-title {
    font-size: 1rem;
    color: #0eb2c7;
    text-transform: uppercase;
    font-weight: 700;
}

.tertiary-title {
    font-size: 0.8125rem;
}

.primary-text {
}

.secondary-text,
.secondary-text a {
    font-size: 0.875rem;
    color: #0eb2c7;
}

.description {
    font-size: 0.75rem;
    color: #757575;
}

/*************************************/
/** Lists */
/*************************************/

ul,
ul li {
    margin: 0;
    padding: 0;
    text-indent: 0;
    list-style-type: none;
}

/* Ementa list */
.ementa-item {
    margin-top: 1.5625rem;
}

.ementa-list-item {
    font-size: 0.875rem;
}

/* Gallery list */

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.gallery-list-button {
    font-size:14px;
    background: none;
    border: none;
    text-transform: uppercase;
    color: #757575;
    transition: color 180ms ease;
}

.gallery-list-button.active {
    background: none;
    border: none;
    text-transform: uppercase;
    color: #00b2c8;
}

.gallery-list-button:hover:not(.active) {
    color: #000;
}

.gallery-image {
    width: 100%;
    display: block;
    height: auto;
    margin-bottom:10px;
}

.gallery-image-item {
    margin-bottom: 20px;
}

/*************************************/
/** Inputs */
/*************************************/

*:focus {
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type='number'] {
    -moz-appearance: textfield;
}

textarea {
    resize: none;
    overflow: auto;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #000;
    background-image: none;
}

.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #000;
}

.form-control {
    color: #000;
    border: 0;
    border-bottom: 2px solid #000;
    border-radius: 0;
}

.form-control:focus {
    color: 000;
    background-color: #fff;
    border-color: #00b2c8 !important;
    outline: 0;
    box-shadow: none;
}

a#b-submit {
    color:#FFF;
    background-color: #343a40;
    border-color: #343a40;
}

a#b-submit.disabled {
    pointer-events: none;
    background-color: #757575;
    border-color: #757575;
}

div#result {
    text-align: center;
    font-size: 14px;
    color:#FFF;
}

div#result div.success {
    padding: 10px 0 10px 0;
    background-color: #0eb2c7;
}

div#result div.error {
    padding: 10px 0 10px 0;
    background-color: #000;
}

.custom-control-label::before,
.custom-control-label::after {
    top: 0.13rem;
}

.custom-control.custom-radio .custom-control-label::before {
    background-color: #fff;
    border: 1px solid #000;
}

.custom-control.custom-radio
    .custom-control-input:checked
    ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23000'/%3e%3c/svg%3e");
}

.custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input:valid ~ .custom-control-label::before {
    border-color: #000;
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.was-validated
    .custom-control-input:valid:checked
    ~ .custom-control-label::before {
    border-color: #000;
    background-color: #fff;
}

/*************************************/
/** Pages */
/*************************************/
/*? Home */
.home .full-heigth-image {
    background-image: url(../images/001fundos_home.jpg);
    background-position: center bottom;
    height: auto;
    min-height: calc(100vh - 147px);
}

/*? Restaurante */
.restaurante .full-heigth-image {
    background-image: url(../images/001restaurante.jpg);
    background-position: center bottom;
}

/*? Arrifana */
.arrifana .full-heigth-image {
    order: -1;
    background-image: url(../images/023ariffana20120130.jpg);
    background-position: center bottom;
}

/*? Reservas */
.reservas .full-heigth-image {
    background-image: url(../images/fundo_o_paulo.jpg);
    background-position: center bottom;
}

/*? Contactos */
.contactos-col {
    margin-bottom: 25px;
}

.map-col {
    padding-right: 0;
    padding-left: 0;
    height: 450px;
}

.map-col iframe {
    width: 100%;
    height: 100%;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); /* Firefox 10+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(99%); /* Chrome 19+ & Safari 6+ */
    -webkit-backface-visibility: hidden; /* Fix for transition flickering */
}

/*? O Paulo */
.opaulo .full-heigth-content {
    background-color: #2e2421;
}

.opaulo .full-heigth-content .primary-text {
    color: #fff;
}
.opaulo .full-heigth-image {
    order: -1;
    background-image: url(../images/opaulo.jpg);
    background-position: center top;
}

/*************************************/
/** Vendors */
/*************************************/
/* Date picker */
.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today[disabled] {
    background-color: #eaeaea;
    background-image: none;
}

.datepicker table tr td.active.active {
    background-color: #0eb2c7;
    background-image: none;
}

.datepicker table tr td.active:hover.active {
    background-color: #0c7886;
}

/**! ***********************************/
/**! Media queries */
/**! ***********************************/

@media (min-width: 768px) {
    /*************************************/
    /** Header */
    /*************************************/
    .header-logo img {
        width: 250px;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 1rem;
    }

    .navbar-collapse {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding-left: 0;
    }

    .social-links {
        order: 0;
    }

    .languages {
        margin: 0;
    }

    /*************************************/
    /** Layout */
    /*************************************/
    .padding {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .full-heigth-content {
        padding: 8% 8%;
    }

    .full-heigth-image {
        height: auto;
        min-height: calc(100vh - 190px);
    }

    /*************************************/
    /** Lists */
    /*************************************/
    /* Gallery list */
    .gallery-list {
        /*display: block;*/
        margin-top: 40px;
        margin-bottom: 0;
    }

    .gallery-images-list {
        margin-top: 40px;
        opacity: 1;
        transition: opacity 120ms ease;
    }

    .gallery-images-list.hide {
        opacity: 0;
    }

    /*************************************/
    /** Pages */
    /*************************************/
    /*? Home */
    .home .full-heigth-image {
        height: auto;
        min-height: calc(100vh - 190px);
    }

    /*? Restaurante */
    .restaurante .full-heigth-image {
        background-position: center;
    }

    /*? Arrifana */
    .arrifana .full-heigth-image {
        order: 0;
    }

    /*? O Paulo */
    .opaulo .full-heigth-image {
        order: 0;
    }
}

@media (min-width: 1024px) {
    /*************************************/
    /** Header */
    /*************************************/
    .navbar-dark .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 1280px) {
    /*************************************/
    /** Header */
    /*************************************/
    .navbar-dark .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

#myPopUp .modal-content {border-radius: 0.6rem; overflow: hidden;}
#myPopUp .modal-header, #myPopUp .modal-footer {border: 0;}

#myPopUp .event .modal-content { background-color: #fff;}
#myPopUp .event .inner-col { padding: 3em; width: 100%; height: 100%; }
#myPopUp .event .modal-header {font-family: Marck Script, Georgia, 'Times New Roman', Times, serif; color: #0eb2c7;}
#myPopUp .event .modal-body {flex: 0;}
#myPopUp .event .modal-body p { margin: 0;}
#myPopUp .event .modal-body p + p {margin-top: 1rem;}
#myPopUp .event .modal-footer {justify-content: start;}
#myPopUp .event .modal-img {object-fit: cover;}
@media screen and (min-width: 991px) {
    #myPopUp .event .modal-img {height: 55vh;}
}
