@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,600;0,700;1,400&family=Heebo:wght@300;400;500;700&display=swap');

html, body{
    font-family: 'Heebo', sans-serif !important;
    color: black !important;

}


.nav{
    height: 80px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s;
    padding: 0 15px;
}
.nav.transparent{
    background-color: transparent;
    height: 100px;
}
.nav .nav-items{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.nav .nav-items .nav-item{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: white;
}
.nav .nav-items .nav-item:hover{
    color: var(--tone-secondary)
}

.nav .nav-items .nav-item .logo{
    width: 180px;
}

.nav .mobile-items{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: none;
}
.nav .mobile-items .nav-item{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: white;
}
.nav .mobile-items .nav-item .logo{
    width: 130px;
}
.nav:not(.transparent) .nav-item{
    color: black !important;
}
.nav:not(.transparent) .nav-items .nav-item:hover{
    color: var(--tone-color) !important;
    font-weight: bold;
}

.mobile-menu-overlay{
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 97;
    height: 100%;
    background-color: #00000040;
}
.mobile-menu-overlay.active{
    display: block;
    backdrop-filter: blur(5px);

}
.mobile-menu{
    width: 100%;
    background-color: white;
    z-index: 98;
    top: -100%;
    position: fixed;
    left: 0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    padding: 25px 25px 50px 25px;
    gap: 25px;
}
.mobile-menu.active{
    top: 70px;
}
.mobile-menu .nav-item{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: black;
}
.mobile-menu .nav-item:hover{
    color: var(--tone-color)
}

@media (max-width:992px){
    .nav{
        height: 70px !important;
    }
    .nav.nav.transparent{
        background-color:  white !important;
    }
    .nav .nav-items{
        display: none;
    }
    .nav .mobile-items{
        display: flex;
    }
}


/*HERO*/
.hero{
    background-size: cover;
    height: 700px;
    background-position: center;
    position: relative;
    color: white;
}
.hero .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000C18 0%, rgba(0, 23, 49, 0) 21.57%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero h1{
    color: white;
    font-size: 60px;
    font-family: 'Cormorant Infant', cursive;
    margin-bottom: 5px !important;
}
.hero h2{
    color: white;
    font-size: 24px;
    font-weight: 300 !important;
}

/*ABOUT US*/
.about-us-img{
    width: 100%;
    object-fit: cover;
}

/*CARTA*/
.dishes-section{
    position: relative;
    overflow: hidden;
}
.dishes-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(236, 219, 169, 0.63);
    border-bottom: solid 1px #DFCD98;
    padding: 20px 30px;
    font-family: 'Heebo';
    font-size: 25px;
    letter-spacing: 0.26em;
    font-weight: 300;
    transition: all 0.3s;
    cursor: pointer;
}
.dishes-item img{
    width: 60px;
    transition: all 0.2s
}
.dishes-item:hover{
    background: rgba(189, 170, 113, 0.4);
}
.dishes-item:hover img{
    transform: translateX(5px);
}
.dish-image{
    position: absolute;
    width: 300px;
    top: 0;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}
@media (max-width:992px){
    .dish-image{
        display: none;
    }
}


/*IMAGEN DE FONDO MOLUSCOSs*/
.bg-image-section{
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 300px;
}

/*SECCION GELERIA*/
.gallery{}
.map {
    filter: grayscale(100%);         
}

footer{
    color: white;
    background-color: #163035;
    padding: 80px 0;
}
footer .footer-title{
    color: white;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.2em;
}
footer .footer-links{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .footer-links a{
    color: white;
}


@media (max-width:992px){
    .container{
        padding: 0 15px;
    }
}




.page-header{
	margin-top: 80px;
	height: 300px;
	display: flex;
	align-items: center;
}