* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --primary: #2f2f2f;
    --secondary: #141110;
    --main: #d18c0a; 
    --bg1: #353535;
    --bg2: #2f2f2f;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    width: 100%;
    background: var(--bg1);
    color: white;
}
button {
    font-family: 'Montserrat', sans-serif;
}
a {
    text-decoration: none;
    color: white;
}
header, main {
    display: none
}


/* HEADER */
#top-header {
    background: var(--main);
    width: 100%;
    z-index: 2;
}
.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    font-size: 10pt;
}
header {
    position: absolute;
    width: 100%;
    z-index: 2;
    background: var(--primary);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-bottom: 3px solid #272727;
    transition: 1s;
}
header.scroll {
    position: fixed;
    top: 0;
}
.navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        -webkit-box-pack: justify;
            justify-content: space-around;
    height: 80px;
    color: white;
    font-size: 15px;
    text-transform: uppercase;
}

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            align-items: center;
    list-style: none;
}
.nav-link {
    opacity: .8;
    padding: 20px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.nav-link:hover {
    cursor: pointer;
    opacity: 1;
}
.navbar-logo {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    background: var(--primary);
    padding: 30px 25px;
    border-radius: 50%;
    z-index: 1;
}
.navbar-logo.scroll {
    padding: 20px 25px 23px;
    margin-top: 50px;
    border-radius: 0;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}
.navbar-logo img {
    height: 100px;
    transition: .5s;
}
.navbar-logo img:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.nav-mobile {
    display: none;
    width: 40px;
}
.nav-mobile:hover {
    cursor: pointer;
}
.nav-mobile div {
    height: 3px;
    background-color: white;
    margin: 5px;
}
.nav-reservas {
    background: var(--main);
    padding: 17px 15px;
    margin-left: 13px;
    font-weight: 600;
    border-radius: 3px;
}

@media screen and (max-width: 992px) {
    .nav-mobile {
        display: none;
    }
    .navbar {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 0 10px;
        float: right;
    }
    .nav-links {
        display: none;
    }
    .nav-links li {
        margin: 20px 0
    }
    .nav-reservas {
        margin: 0;
    }
    .top-header-inner {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 10px;
        height: 93px;
    }    
}
.nav-active {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    display: flex;
    justify-content: center;
}
/* MAIN */
main {
    
}
section {
    position: relative;
    text-align: center;
    padding: 40px 0;
    min-height: 300px;
    -webkit-box-shadow: 0px 0px 25px -15px rgba(0,0,0,0.20);
            box-shadow: 0px 0px 25px -15px rgba(0,0,0,0.20);
}
section:before {
    height: 50px;
    display: block;
    content: '';
}
section:after {
    height: 50px;
    display: block;
    content: '';
}
section h1 {
    margin-bottom: 30px
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}
/* LOADER */
#loader {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    width: 100%;
    background: var(--secondary);
    z-index: 3;
    -webkit-transition: opacity 1s ease-in 0s;
    -o-transition: opacity 1s ease-in 0s;
    transition: opacity 1s ease-in 0s;
}
#loader img {
    height: 100px;
    margin-bottom: 100px
}
@media(min-width: 992px) {
    #loader {
        padding-bottom: 300px
    }
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    -webkit-animation-delay: -0.45s;
            animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    -webkit-animation-delay: -0.15s;
            animation-delay: -0.15s;
}
@-webkit-keyframes lds-ring {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes lds-ring {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
  

/* CAROUSEL */
#btn-pedir-ahora {
    z-index: 1;
    position: absolute;
    margin: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #ff8e00;
    color: white;
    width: 250px;
    height: 70px;
    font-size: 18pt;
    font-weight: 600;
    box-shadow: 0 0 25px 0px rgba(0,0,0,1);
    transition: .5s;
    border: none;
    outline: none;
}
#btn-pedir-ahora:hover {
    font-size: 19pt;
    cursor: pointer
}
.carousel {
    position: relative;
    width: 100%;
    height: 700px;
}
.slides {
    height: 100%;
    width: 100%;
    position: relative;
    opacity: .9;
}
.slide {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 1000ms;
    -o-transition: opacity 1000ms;
    transition: opacity 1000ms;
    background-size: cover;
    background-position: 50% 50%;
}
.slide:first-child {
    opacity: 1;
}
.slide[data-state=active] {
    display: block;
}
.indicators {
    display: none;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.indicator {
    cursor: pointer;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    font-size: 15pt;
    border-radius: 50%;
    z-index: 1;
    background: transparent;
    border: 1px solid white;
    color: white;
    transition: .5s;
}
.carousel-controls:hover {
    cursor: pointer;
    color: var(--main);
    border: 1px solid var(--main);
}
#carousel-previous {
    left: 15px;
}
#carousel-next {
    right: 15px;
}
@media(max-width: 992px) {
    #btn-pedir-ahora {
        width: 180px;
        height: 55px;
        font-size: 15pt;
        top: 40%;
    }
}
/* FOTOS */
#menu {
    background-image: url('../imgs/mosaic.png');
    background-size: 370px;
    background-position-x: -30px;
    background-position-y: -15px;
}
.menu-bar {
    border-radius: 25px;
    background: #252525;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-transform: uppercase;
    font-size: 11pt;
    width: fit-content;
    margin: auto;
}
.menu-bar-item {
    padding: 20px 40px;
    border-radius: 25px;
    transition: .5s;
}
.menu-bar-item:hover {
    cursor: pointer;
    color: #9c9c9c;
}
.menu-bar-item.active {
    background: var(--main);
    color: white;
}
.menu-inner {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
    margin: 20px 0
}
.menu-item {
    position: relative;
    height: auto;
    width: 270px;
    -webkit-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.60);
    box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.60);
    background-size: cover;
    margin: 20px auto;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background: #67532f;
    border-radius: 5px;
    padding-bottom: 20px;
    overflow: hidden;
    
}
.menu-item-price {
    position: absolute;
    background: #d18c0a;
    padding: 10px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 0 25px 0px rgba(0,0,0,1);
}
.menu-item-photo {
    height: 160px;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    -webkit-box-shadow: 0 0 25px -5px rgba(0,0,0,.5);
    box-shadow: 0 0 25px -5px rgba(0,0,0,.5);
    background-size: cover;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #7f6f50;
}
.menu-item-photo:hover {

}
.menu-item-detail {
    margin-top: 20px;
    padding: 0 10px;
}
.menu-item-detail .menu-item-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
}
@media(max-width: 1199px) {
    .menu-inner {
        grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    }
}
@media(max-width: 900px) {
    .menu-inner {
        -ms-grid-columns: none;
        grid-template-columns: none;
    }
    .menu-bar {
        flex-direction: column;
        background: none;
    }
    .menu-item {
        margin: auto;
    }
    .menu-bar-item { 
        width: 270px;
        border: 1px solid var(--main);
        margin: 5px 0;
        background: #00000070;
    }
}
/* PARALLAX */
#parallax:before, #parallax:after {
    height: 0; 
}
#parallax {
    padding: 0;
}
#parallax-inner {
    min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}
@media(max-width: 992px) {
    #parallax {
        display: none;
    }
}

/* HORARIO */
#horario {
    background-image: url('../imgs/mosaic.png');
    background-size: 370px;
    background-position-x: -30px;
    background-position-y: -15px;
}
#horario-inner {
    background: #00000057;
    width: 50%;
    margin: auto;
    padding: 10px;
    border-radius: 100px;
}
#horario-inner p {
    margin: 30px;
    font-size: 15pt;
}
#horario-inner i {
    margin-right: 10px;
    font-size: 16pt;
}
@media(max-width: 991px) {
    #horario-inner {
        width: 90%
    }
}
/* CONTACTO */
#contacto {
    background: var(--bg2);
}
#contacto-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 50px
}
#contacto-info {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
}
#contacto-info h3 {
    margin-bottom: 15px;
    font-size: 16pt;
}
.contacto-info-item {
    margin: 15px 0;
}
.contacto-info-item i {
    font-size: 25pt;
    color: var(--secondary);
}
.contacto-info-item p {
    margin-left: 15px
}
.contacto-info-item a {
    color: black;
    font-size: 11pt;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#contacto form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 40%;
    text-align: left;
}
#contacto form h3 {
    margin: 0 auto 30px auto;
    font-size: 16pt;
}
#contacto .form-group-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#contacto .form-group-inline .form-group {
    width: 49%;
}
#contacto .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
}
#contacto .form-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between
}
#contacto form label {
    color: black;
    margin-bottom: 10px;
    font-size: 11pt;
}
#contacto form input {
    margin-bottom: 25px;
    border-color: rgba(50, 33, 92, 0.1);
    background-color: rgb(225, 228, 234);
    font-size: 15px;
    font-weight: 500;
    height: 35px;
    padding-left: 10px;
}
#contacto form input:focus, #contacto form textarea:focus {
    outline: 1px solid var(--primary);
}
#contacto form textarea {
    height: auto;
    min-height: 175px;
    margin-bottom: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(50, 33, 92, 0.1);
    background-color: rgb(225, 228, 234);
    border-radius: 0px;
    font-family: Barlow, sans-serif;
    color: rgba(50, 33, 92, 0.75);
    font-weight: 500;
    padding: 10px
}
#contacto-disponibilidad form {
    margin: 20px auto;
}
#contacto-btn {
    transition: .5s;
}
#contacto-form-success {
    display: none;
    width: 40%;
}
#contacto-form-success p {
    margin: 10px 0
}
@media(max-width: 992px) {
    #contacto-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    #contacto-info, #contacto form {
        width: 90%;
    }
    #contacto-info {
        margin-bottom: 30px
    }
}

/* FOOTER */
footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    align-items: center;
    height: 75px;
    color: white;
    background: var(--primary);
}
.footer-item {
    text-align: center;
    margin: 0 40px;
    padding-top: 70px
}
.footer-item p {
    margin-top: 20px;
    font-size: 10pt;
}
.social {
    font-size: 22pt;
    margin-top: 14px;
}
.social * {
    margin: 0 5px
}
@media(max-width: 900px) {
    footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        height: auto;
        padding: 15px;
    }
}

/* BUTTONS */
.btn {
    min-width: 100px;
    min-height: 40px;
    padding: 0 15px;
    border: none;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 5px;
    border-radius: 3px;
}
.btn:hover {
    cursor: pointer;
    opacity: 0.8;
}
.btn-primary {
    background: var(--secondary);
    color: #eaeaea;
}
.btn-secondary {
    background: var(--main);
    color: #eaeaea;
}
@media(max-width: 900px) {
    .btn {
        margin: 0;
    }
}
/* HEADERS */
h1, h2, h3, h4, h5 {
    color: white;
}
h1 {
    font-size: 32pt;
}

/* OTHERS */
.fixed-icon {
    position: fixed;
    bottom: 30px;
    height: 60px;
    width: 60px;
    background: var(--main);
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 25px -5px rgba(0,0,0,0.50);
            box-shadow: 0px 0px 25px -5px rgba(0,0,0,0.50);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: white;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.fixed-icon:hover {
    cursor: pointer;
    opacity: 0.9;
}

#whatsapp {
    left: 30px;
    font-size: 25pt;
}
#scroll-up {
    right: 30px;
    font-size: 20pt;
}


/* MODAL */
.image-modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 2200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .25s all;
    -o-transition: .25s all;
    transition: .25s all;
}
.image-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 70%;
    max-width: 1200px;
    text-align: center;
}
.image-modal-content img {
    max-width: 100%;
    max-height: 95vh;

}
@media(max-width: 576px)
{
    .image-modal-content
    {
        width: 100%;
    }
} 
.image-modal-number {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
.image-modal-prev, .image-modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none;
    border-radius: 3px 0 0 3px;
}
.image-modal-prev:hover, .image-modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-decoration: none;
}
.image-modal-next {
    right: 0;
}
.image-modal-prev {
    left: 0;
}
.image-modal .close-bg {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
}
.image-modal .close-bg:hover,
.image-modal .close-bg:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}
.image-modal .close-x {
    color: white;
    position: absolute;
    top: 12px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}
.image-modal .close-x:hover,
.image-modal .close-x:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* OTHER */
.scroll-lock {
    overflow: hidden;
}
@media(min-width: 772px) {
    .hidden-lg {
        display: none;
    }
}