@font-face {
    font-family: 'VisueltPro';
    src: url('../fonts/VisueltPro-Black.woff') format('woff'),
    url('../fonts/VisueltPro-Black.ttf') format('truetype'),
    url('../fonts/AtypDisplayVisueltPro-Blackeot') format('embedded-opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'VisueltPro';
    src: url('../fonts/VisueltPro-Bold.woff') format('woff'),
    url('../fonts/VisueltPro-Bold.ttf') format('truetype'),
    url('../fonts/VisueltPro-Bold.eot') format('embedded-opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'VisueltPro';
    src: url('../fonts/VisueltPro-Medium.woff') format('woff'),
    url('../fonts/VisueltPro-Medium.ttf') format('truetype'),
    url('../fonts/VisueltPro-Medium.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'VisueltPro';
    src: url('../fonts/VisueltPro-Regular.woff') format('woff'),
    url('../fonts/VisueltPro-Regular.ttf') format('truetype'),
    url('../fonts/VisueltPro-Regular.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}





body{
    font-family: "VisueltPro", Helvetica, Arial, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

/* ----- HEADER ------------------------*/
.header {
    position: fixed;
    width: 100%;
    height: 140px;
    z-index: 10;
    top: 0;
    background-color: #ccc;
}
.dark > .header{
    background-color: #1a1a1a !important;
}
.header .logo {
    display: block;
    margin-left: 30px;
}

.nav {
    display: flex;
    height: 140px;
}
.nav-left, .nav-right {
    display: flex;
    margin: auto 50px;
    height: 140px;
    justify-content: center;
    align-items: center;
}
.nav-left{
    position: relative;
    float: left;
    justify-content: right;
    width: 20%;
}
.nav-right{
    position: relative;
    float: right;
    justify-content: right;
    width: 60%;
}
.nav-left ul, .nav-right ul {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
    line-height: 50px;
}

.nav ul li a {
    font-family: 'Futura', Arial, Helvetica, sans-serif;
    color: #a6a6a6;
    font-size: 18px;
    font-weight: 200;
    cursor: pointer;
    text-decoration: none;
}
.nav ul li a.active {
    color: #191919;
}
.nav ul li a:hover {
    color: #c37d08;
}

.dark .nav ul li a {
    color: #4b4b4b;
}
.dark .nav ul li a.active {
    color: #a6a6a6;
}
.dark .nav ul li a:hover {
    color: #c37d08;
}

.menu-icon {
    display: none;
    position: absolute;
    top: 30px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.menu-icon div {
    width: 100%;
    height: 2px;
    background-color: #ff5b3c;
    margin: 5px 0;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
}

.menu-icon,
.close-icon {
    display: inline-block;
    cursor: pointer;
}
.close-icon {
    display: none;
}
.mobile-menu-button.open .menu-icon {
    display: none;
}
.mobile-menu-button.open .close-icon {
    display: inline-block;
}
.mobile-menu {
    display: none;
}
.volver{
    display: none;
}
.desktop{
    display: block !important;
}
.mobile{
    display: none !important;
}

.content{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 200px;
}
.menu-ico {
    fill: #1a1a1a;
    stroke-width: 0px;
}
.book-table{
    width: 250px;
    position: fixed;
    bottom: 20px;
    right: 50px;
}
@media (max-width: 768px) {
    .screen{
        min-height: 100px;
    }
    .nav.mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        z-index: 1000;
    }

    .nav-left, .nav-right {
        margin: auto;
        height: 100px;
    }
    .desktop{
        display: none !important;
    }
    .mobile{
        display: block !important;
    }
    .header {
        height: 120px;
    }
    .content {
        margin-top: 100px;
    }
    .logo-mobile{
        position: absolute;
        top: 0;
        width: 100%;
        text-align: center;
    }
    .logo-mobile-img{
        position: relative;
        float: left;
        margin-left: 20px;
    }
    .mobile-menu-button {
        display: block;
    }
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex; /* Flex para centrar */
        flex-direction: column;
        justify-content: center; /* Centra vertical */
        align-items: center;     /* Centra horizontal */
        z-index: 1000;
        overflow: hidden;
        background-color: #000000;
    }

    .mobile-menu .background{
        position: absolute;
        z-index: -2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../images/home_fondo_mobile.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0.3;
    }
    .mobile-menu ul {
        position: relative;
        z-index: 2;
        padding: 0;
        margin: 0;
        text-align: center;
        list-style: none;
    }

    .mobile-menu ul li a {
        font-family: 'Futura', Arial, Helvetica, sans-serif;
        color: #C68315 !important;
        font-size: 20px;
        font-weight: 200;
        cursor: pointer;
        text-decoration: none;
    }

    .mobile-menu ul li a.active {
        color: #191919;
    }
    .mobile-menu ul li a:hover {
        color: #c37d08;
    }
    .volver{
        display: none;
        position: absolute;
        left: 20px;
        top: 45px;
    }

    .close-icon{
        display: block;
        position: absolute;
        right: 50px;
        top: 50px;
        font-size: 30px;
    }
    .mobile-menu ul{
        text-align: center;
    }
    .mobile-menu ul li{
        height: 70px;
        line-height: 70px;
    }

    .book-table{
        width: 220px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-110px);
    }
}

/* ----- HOME ------------------------*/
.container {
    width: 100%;
    max-width: 500px;
}
.home_logo{
    text-align: center;
    margin-bottom: 50px;
}
.home_menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_menu ul {
    width: 100%;
    text-decoration: none;
    list-style: none;
    padding: 0;
}
.home_menu .button{
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: 2px solid #003DA6;
    border-radius: 10px;
    color: #003DA6;
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    margin: 10px 0;
    cursor: pointer;
}
.home_menu a{
    text-decoration: none;
}
.home_menu .button:hover {
    background-color: #003DA6;
    color: #FFFFFF;
}
.homo_icono{
    text-align: center;
    margin: 30px 0;
}
.home_footer{
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 50px;
}
.home_footer a {
    font-size: 16px;
    color: #003DA6;
    text-decoration: none;
}
.home_footer a:hover {
    color: #002564;
}

.menu_flecha{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 150px;
    margin-left: 50px;
}
.menu_pez {
    height: 100px;
    text-align: center;
    margin: auto;
    justify-content: center;
    align-items: center;
    display: flex;
}

.desktop{
    display: block !important;
}
.mobile{
    display: none !important;
}
@media (max-width: 768px) {
    .desktop {
        display: none !important;
    }
    .mobile {
        display: block !important;
    }

    .container {
        width: 100%;
        max-width: 500px;
        padding: 40px;
    }
    .home_logo {
        margin-bottom: 30px;
    }
    .home_menu .button {
        font-size: 20px;
    }
    .home_footer{
         margin-top: 20px;
     }
    .menu_flecha{
        z-index: 100;
        margin-top: 130px;
    }
}

/* ----- FOOTER ------------------------*/
.footer{
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-size: 14px;
    color: #C68315;
}
.footer a{
    color: #ffffff;
}
.footer a:hover{
    color: #d2d2d2;
}

.footer-reserva{
    position: relative;
    float: left;
    width: 100%;
    margin: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}
.footer-reserva a{
    color: #ffffff;
}
.footer-reserva a:hover{
    color: #d2d2d2;
}
@media (max-width: 768px) {
    .footer {
        font-size: 10px !important;
        padding: 0 50px;
    }
}