/* === ESTILOS GENERALES === */
.responsive {
    width: 100%;
    height: auto;
}

body {
    background-color: #ffffff;
    font-family: 'Cochin', 'Baskerville', 'Libre Baskerville', serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* === SECCIONES Y CONTENEDORES === */
section {
    padding: 80px 0;
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
}

.section-content {
    width: 100%;
}

.long-content {
    text-align: center;
    padding-top: 40px;
}

.long-content img {
    margin-bottom: 30px;
}

/* === TIPOGRAFÍA === */
/* Títulos - Spectral Medium Italic */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 500;
}

/* Párrafos generales - Cochin */
p {
    font-family: 'Cochin', 'Baskerville', 'Libre Baskerville', serif;
    font-weight: 200;
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
    margin-bottom: 1.5rem;
}

/* Textos descriptivos - Spectral ExtraLight */
.texto-descriptivo {
    font-family: 'Spectral', serif;
    font-weight: 300; /* ExtraLight */
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
    margin-bottom: 1.5rem;
}

/* === NAVBAR === */
.navbar-custom {
    background-color: transparent;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar-custom.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    font-weight: bold;
    color: #333;
    margin: 0 10px;
    font-family: 'Spectral', serif;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4af37;
}

.navbar-custom:not(.scrolled) .nav-link {
    color: #fff;
}

/* === IMÁGENES === */
.logo-top {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 250px;
    height: auto;
}

.imagen-grande {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.imagen-lateral img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* === BANNER DE CARGA === */
#loading-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.loading-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 5px solid rgba(243, 243, 243, 0.8);
    border-top: 5px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* === BANNER PRINCIPAL === */
.banner-full {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.banner-container {
    padding: 0;
    margin: 0;
    width: 100%;
}

#inicio {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === RECUADROS MISIÓN Y VISIÓN === */
.recuadro {
    background-color: #ffffff;
    border: 2px solid #333;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: auto;
    transition: transform 0.3s ease;
    width: 90%;
    margin: 0 auto;
}

.recuadro:hover {
    transform: translateY(-5px);
}

.recuadro h3 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.recuadro .texto-descriptivo {
    font-family: 'Spectral', serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
    margin-bottom: 0;
}

/* === LAYOUT DE COLUMNAS === */
.col-md-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 100%;
}

.mision {
    margin-bottom: 30px;
}

.vision {
    margin-top: 0;
}

.row.mt-5 {
    min-height: 500px;
    align-items: center;
}

/* === TÍTULO CON LÍNEA Y LOGO === */
.titulo-con-linea {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 50px 0;
    padding: 20px 0;
}

.titulo-menu {
    margin: 0;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 2.5rem;
    color: #333;
}

.linea-vertical-dorada {
    width: 2px;
    height: 80px;
    background: #000000;
    border-radius: 2px;
}

.contenedor-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.logo-menu {
    margin: 0;
    max-width: 200px;
    height: auto;
}

.menu-compacto {
    padding-top: 10px !important;
    margin-bottom: 10px !important;
}

.menu-compacto .titulo-con-linea {
    margin: 5px 0 15px 0 !important;
    padding: 5px 0 !important;
}

/* === ESTILOS PARA EL MENÚ === */
/* Alinear todo el contenido del menú a la izquierda */
.menu-contenedor {
    text-align: left;
    width: 100%;
}

.menu-contenedor h1 {
    text-align: left !important;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 15px;
}

.descripcion-menu {
    text-align: left !important;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-family: 'Cochin', 'Baskerville', 'Libre Baskerville', serif;
    line-height: 1.5;
    text-align-last: left !important;
}

.linea-menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.4;
    text-align: left !important;
}

.linea-menu em {
    font-style: italic;
    color: #333;
    text-align: left;
}

.precio-menu {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 300;
    color: #d4af37;
    white-space: nowrap;
    margin-left: 20px;
    flex-shrink: 0;
}

.descripcion-plato {
    font-family: 'Cochin', 'Baskerville', 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: left !important;
    text-align-last: left !important;
    white-space: normal;
    font-weight: 200;
}

/* Responsive */
@media (max-width: 768px) {
    .linea-menu {
        white-space: normal;
        flex-direction: column;
        gap: 5px;
    }
    
    .precio-menu {
        margin-left: 0;
        align-self: flex-end;
    }
}
/* Reducir espacio entre nombre del plato y descripción */
/* Reducir más el espacio entre items del menú */
.item-menu-plano {
    margin-bottom: 8px; /* Reducido de 15px a 8px */
    padding-bottom: 8px; /* Reducido de 12px a 8px */
    border-bottom: 1px solid #f0f0f0;
}

.linea-menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px; /* Reducido de 4px a 2px */
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.4;
    text-align: left !important;
}

.descripcion-plato {
    font-family: 'Cochin', 'Baskerville', 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4; /* Reducido de 1.5 a 1.4 */
    margin: 1px 0 0 0 !important; /* Reducido de 2px a 1px */
    text-align: left !important;
    text-align-last: left !important;
    white-space: normal;
    font-weight: 200;
}

/* Línea turquesa oscura para títulos del menú */
.menu-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.menu-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #008080; /* Turquesa oscuro */
}

/* === FOOTER NINA === */
.footer-nina {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 2px solid #d4af37;
    margin-top: 50px;
}

.footer-title {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-text {
    font-family: 'Cochin', 'Baskerville', 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mapa-container {
    padding: 0;
    background: transparent;
    border-radius: 8px;
}

.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: #d4af37;
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-info {
        text-align: center;
        margin-top: 30px;
    }
    
    .redes-sociales {
        justify-content: center;
    }
    
    .mapa-container iframe {
        height: 250px;
    }
}


/* === FOOTER ECKO === */
.footer-ecko {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 2px solid #008080;
    margin-top: 50px;
}

.footer-ecko .footer-info {
    padding-left: 0;
}

@media (min-width: 768px) {
    .footer-ecko .footer-info {
        padding-left: 2rem; /* Espacio adicional en desktop */
    }
}

.footer-ecko .footer-title {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-ecko .footer-text {
    font-family: 'Cochin', 'Baskerville', 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mapa-container {
    width: 100%;
}

.footer-ecko .social-link {
    background-color: #000000;
}

.footer-ecko .social-link:hover {
    background-color: #008080;
}

/* === FOOTER CALIENTE === */
.footer-caliente {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 2px solid #4686fd; /* Línea dorada como Nina */
    margin-top: 50px;
}

.footer-caliente .social-link {
    background-color: #000000; /* Dorado para Caliente */
}

.footer-caliente .social-link:hover {
    background-color: #4686fd; /* Turquesa al hover */
}


/* === BANNER SECCIONES === */
.banner-container {
    height: 100vh;
    background-image: url('../assets/Logos/Fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* El resto de tu CSS se mantiene igual */
.banner-seccion {
    height: 100vh;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-seccion:last-child {
    border-right: none;
}

.banner-seccion:hover {
    transform: scale(1.02);
    background-color: rgba(0, 0, 0, 0.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.banner-seccion:hover .banner-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}



.banner-seccion:hover .banner-logo {
    transform: scale(1.1);
}

.banner-titulo {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    transition: transform 0.3s ease;
}

.banner-seccion:hover .banner-titulo {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-container .row {
        flex-direction: column;
    }
    
    .banner-container .col-4 {
        width: 100%;
        height: 33.33vh;
    }
    
    .banner-seccion {
        height: 33.33vh;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .banner-seccion:last-child {
        border-bottom: none;
    }
    
    .banner-logo {
        max-width: 100px;
    }
    
    .banner-titulo {
        font-size: 1.8rem;
    }
}

.banner-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */ /* Comenta esta línea temporalmente */
    transition: transform 0.3s ease;
}