/* Estilos específicos para la página del menú */
.menu-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.menu-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(248, 196, 0, 0.15) 0%, rgba(212, 168, 0, 0.15) 100%);
    border: 1px solid rgba(248, 196, 0, 0.3);
    border-radius: 30px;
    color: #F8C400;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.menu-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(248, 196, 0, 0.3);
    border-radius: 30px;
    color: #F8C400;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(248, 196, 0, 0.1);
    border-color: #F8C400;
    transform: translateX(-5px);
}

.menu-images-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-image-wrapper {
    margin-bottom: 50px;
    position: relative;
}

.menu-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(248, 196, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid rgba(248, 196, 0, 0.2);
}

.menu-image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(248, 196, 0, 0.2);
    border-color: rgba(248, 196, 0, 0.4);
}

.menu-label {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #F8C400 0%, #D4A800 100%);
    color: #121212;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-menu-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(248, 196, 0, 0.05) 0%, rgba(212, 168, 0, 0.05) 100%);
    border-radius: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-menu-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-menu-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

/* Efecto de zoom al hacer click */
.menu-image-wrapper.zoomed img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    max-height: 95vh;
    z-index: 9999;
    border-radius: 12px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9998;
    cursor: pointer;
}

.overlay.active {
    display: block;
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
    .menu-page {
        padding: 110px 0 70px;
    }

    .menu-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .menu-subtitle {
        font-size: 1.1rem;
        padding: 0 30px;
    }

    .menu-images-container {
        max-width: 900px;
        padding: 0 30px;
    }

    .menu-image-wrapper {
        margin-bottom: 40px;
    }

    .menu-label {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .cta-menu-section {
        margin-top: 60px;
        padding: 50px 30px;
    }

    .cta-menu-title {
        font-size: 2.2rem;
    }

    .cta-menu-text {
        font-size: 1.05rem;
    }
}

/* Responsive - Móviles */
@media (max-width: 768px) {
    .menu-page {
        padding: 90px 0 50px;
    }

    .menu-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .menu-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
        letter-spacing: 1.5px;
    }

    .menu-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .menu-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    .menu-images-container {
        padding: 0 15px;
    }

    .menu-image-wrapper {
        margin-bottom: 30px;
    }

    .menu-image-wrapper img {
        border-radius: 16px;
    }

    .menu-image-wrapper img:hover {
        transform: scale(1.01);
    }

    .menu-label {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-bottom: 12px;
    }

    .cta-menu-section {
        margin-top: 40px;
        padding: 35px 20px;
        border-radius: 20px;
    }

    .cta-menu-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .cta-menu-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    /* Zoom optimizado para móviles */
    .menu-image-wrapper.zoomed img {
        max-width: 98vw;
        max-height: 98vh;
        border-radius: 8px;
    }
}

/* Responsive - Móviles pequeños */
@media (max-width: 480px) {
    .menu-page {
        padding: 80px 0 40px;
    }

    .menu-header {
        margin-bottom: 30px;
    }

    .menu-badge {
        font-size: 0.7rem;
        padding: 7px 15px;
    }

    .menu-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }

    .menu-subtitle {
        font-size: 0.9rem;
    }

    .menu-images-container {
        padding: 0 10px;
    }

    .menu-image-wrapper {
        margin-bottom: 25px;
    }

    .menu-image-wrapper img {
        border-radius: 12px;
    }

    .menu-label {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 10px;
    }

    .cta-menu-section {
        margin-top: 30px;
        padding: 30px 15px;
        border-radius: 16px;
    }

    .cta-menu-title {
        font-size: 1.5rem;
    }

    .cta-menu-text {
        font-size: 0.9rem;
    }
}
